Click or drag to resize

ZebraCardGraphics.Initialize Method (Int32, Int32, OrientationType, PrintType, Nullable<Color> )

Initializes the drawing surface.

Namespace:  Zebra.Sdk.Card.Graphics
Assembly:  SdkApi_Card_Desktop (in SdkApi_Card_Desktop.dll) Version: 2.14.1989
Syntax
public void Initialize(
	int maxWidth,
	int maxHeight,
	OrientationType orientation,
	PrintType printType,
	Nullable<Color> fillColor
)

Parameters

maxWidth
Type: System.Int32
The maximum width of the image. (limited based on printer model)
maxHeight
Type: System.Int32
The maximum height of the image. (limited based on printer model)
orientation
Type: Zebra.Sdk.Card.Enumerations.OrientationType
The orientation of the image.
printType
Type: Zebra.Sdk.Card.Enumerations.PrintType
The type of print to be performed.
fillColor
Type: System.Nullable<Color>
The background fill color. (default is White or 0xffffff)

Implements

ZebraGraphics.Initialize(Int32, Int32, OrientationType, PrintType, Nullable<Color>)
Exceptions
ExceptionCondition
ZebraIllegalArgumentExceptionIf there is an error with the provided arguments.
ZebraCardExceptionIf an error occurs initializing the graphics objects.
Remarks
If the specified maxWidth or maxHeight is 0 then the maximum values for the specified printer model will be used.
See Also