Gets or sets an images's vertical scaling factor in percent.

Syntax

public int VerticalScaling { get; set; }

Examples

The following example sets VerticalScaling property of myImage to 75.

TXTextControl.Image myImage = new TXTextControl.Image(); 

myImage.Sizeable          = false; 
myImage.HorizontalScaling = 75; 
myImage.VerticalScaling   = 75;

textControl1.Images.Add(myImage, -1);