Click or drag to resize

ZebraCardGraphics.DrawText 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
Syntax
public void DrawText(
	string text,
	Font font,
	Color color,
	int x,
	int y,
	int width,
	int height,
	int angle,
	bool shrinkToFit
)

Parameters

text
Type: System.String
The text to be drawn.
font
Type: System.Drawing.Font
The font type.
color
Type: System.Drawing.Color
The text color.
x
Type: System.Int32
The x coordinate.
y
Type: System.Int32
The y coordinate.
width
Type: System.Int32
The width of the rectangle.
height
Type: System.Int32
The height of the rectangle.
angle
Type: System.Int32
The angle of the the text to be drawn (center rotated).
shrinkToFit
Type: System.Boolean
True to reduce the font size to fit the specified width and height.

Implements

ZebraGraphics.DrawText(String, Font, Color, Int32, Int32, Int32, Int32, Int32, Boolean)
Exceptions
ExceptionCondition
ZebraIllegalArgumentExceptionIf there is an error with the provided arguments.
ZebraCardExceptionIf an error occurs while rendering the text.
See Also