ZebraCardGraphicsDrawText Method (String, Font, Color, Int32, Int32, Int32, Int32, Int32, Boolean)
             | 
          
        
         
            Draws the text into the specified rectangle, optionally reducing the size of the font to fit the specified rectangle.
            
 
    Namespace: 
   Zebra.Sdk.Card.Graphics
    Assembly:
   SdkApi_Card_Desktop (in SdkApi_Card_Desktop.dll) Version: 2.14.1989
Syntaxpublic void DrawText(
	string text,
	Font font,
	Color color,
	int x,
	int y,
	int width,
	int height,
	int angle,
	bool shrinkToFit
)
Public Sub DrawText ( 
	text As String,
	font As Font,
	color As Color,
	x As Integer,
	y As Integer,
	width As Integer,
	height As Integer,
	angle As Integer,
	shrinkToFit As Boolean
)
public:
virtual void DrawText(
	String^ text, 
	Font^ font, 
	Color color, 
	int x, 
	int y, 
	int width, 
	int height, 
	int angle, 
	bool shrinkToFit
) sealed
Parameters
- text
 - Type: SystemString
The text to be drawn. - font
 - Type: System.DrawingFont
The font type. - color
 - Type: System.DrawingColor
The text color. - x
 - Type: SystemInt32
The x coordinate. - y
 - Type: SystemInt32
The y coordinate. - width
 - Type: SystemInt32
The width of the rectangle. - height
 - Type: SystemInt32
The height of the rectangle. - angle
 - Type: SystemInt32
The angle of the the text to be drawn (center rotated). - shrinkToFit
 - Type: SystemBoolean
True to reduce the font size to fit the specified width and height. 
Implements
ZebraGraphicsDrawText(String, Font, Color, Int32, Int32, Int32, Int32, Int32, Boolean)
Exceptions
See Also