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

Syntax

public int HorizontalScaling { get; set; }
Public Property HorizontalScaling() As Integer

Examples

The following example sets 'HorizontalScaling' 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);
Dim MyImage As New TXTextControl.Image() 

MyImage.Sizeable          = False 
MyImage.HorizontalScaling = 75 
MyImage.VerticalScaling   = 75 

TextControl1.Images.Add(MyImage, -1)