Exemple #1
0
        public StiTextGeom DrawString(string text, StiFontGeom font, object brush, RectangleF rect, StiStringFormatGeom sf)
        {
            StiTextGeom textGeom = new StiTextGeom(text, font, brush, rect, sf, false);

            geoms.Add(textGeom);
            return(textGeom);
        }
Exemple #2
0
        public StiTextGeom DrawRotatedString(string text, StiFontGeom font, object brush, RectangleF rect, StiStringFormatGeom sf, float angle, bool antialiasing)
        {
            StiTextGeom textGeom = new StiTextGeom(text, font, brush, rect, sf, angle, antialiasing, true);

            geoms.Add(textGeom);
            return(textGeom);
        }
Exemple #3
0
        public StiTextGeom DrawRotatedString(string text, StiFontGeom font, object brush, PointF pos, StiStringFormatGeom sf, StiRotationMode mode,
                                             float angle, bool antialiasing)
        {
            StiTextGeom textGeom = new StiTextGeom(text, font, brush, pos, sf, angle, antialiasing, mode, true);

            geoms.Add(textGeom);
            return(textGeom);
        }
Exemple #4
0
        public StiTextGeom DrawRotatedString(string text, StiFontGeom font, object brush, RectangleF rect, StiStringFormatGeom sf, StiRotationMode mode,
                                             float angle, bool antialiasing, int maximalWidth)
        {
            StiTextGeom textGeom = new StiTextGeom(text, font, brush, rect, sf, angle, antialiasing, maximalWidth, mode, true);

            geoms.Add(textGeom);
            return(textGeom);
        }