TextShape italicAngle

Gets or sets the slant angle of the characters. All the characters will be slanted to the right side by the specified angle.

public float italicAngle {get;Set}

 

Return value

float The slant angle of the characters

 

Example

Copy
TextShape textShape = new TextShape();

textShape.AddText("Sample text Sample text", "Arial", FontStyle.Regular, 10f, 1f);
textShape.TextBoxHeight = 20;
textShape.TextBoxWidth = 60;
textShape.DotDurationMicroseconds = 2;

textShape.ItalicAngle = 1.1f;

vectorImage.AddText(textShape);