Gets or sets a 32x32 1/96 inch icon for this Ribbon
public System.Drawing.Image LargeIcon { get; set; }
Public Property LargeIcon() As System.Drawing.Image
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("32x32_SampleImage");
ribbonButton.DisplayMode = TXTextControl.Windows.Forms.Ribbon.IconTextRelation.LargeIconLabeled;
ribbonButton.LargeIcon = myImage;
Dim ribbonButton As TXTextControl.Windows.Forms.Ribbon.RibbonButton = New TXTextControl.Windows.Forms.Ribbon.RibbonButton()
Dim myImage As System.Drawing.Image = System.Drawing.Image.FromFile("32x32_SampleImage")
ribbonButton.DisplayMode = TXTextControl.Windows.Forms.Ribbon.IconTextRelation.LargeIconLabeled
ribbonButton.LargeIcon = myImage