Gets or sets a 16x16 1/96 inch icon for this Ribbon
public System.Drawing.Image SmallIcon { get; set; }
This example shows how to set a Ribbon
TXTextControl.Windows.Forms.Ribbon.RibbonButton ribbonButton = new TXTextControl.Windows.Forms.Ribbon.RibbonButton();
System.Drawing.Image myImage = System.Drawing.Image.FromFile("16x16_SampleImage");
ribbonButton.DisplayMode = TXTextControl.Windows.Forms.Ribbon.IconTextRelation.SmallIconLabeled;
ribbonButton.SmallIcon = myImage;