Gets or sets an images's horizontal scaling factor in percent.
public int HorizontalScaling { get; set; }
The following example sets 'Horizontal
TXTextControl.Image myImage = new TXTextControl.Image();
myImage.Sizeable = false;
myImage.HorizontalScaling = 75;
myImage.VerticalScaling = 75;
textControl1.Images.Add(myImage, -1);