Version

CheckBoxGlyphInfo Property (UIElementDrawParams)

Determines how check boxes are drawn.
Syntax
'Declaration
 
Public Shared Property CheckBoxGlyphInfo As GlyphInfoBase
public static GlyphInfoBase CheckBoxGlyphInfo {get; set;}
Remarks

This property will affect all Infragistics WinForms controls that draw checkboxes.

The setting may be overriden on individual controls. For example, the UltraCheckEditor control has a GlyphInfo property. The setting on the indivudual control will override this global setting.

Note: Setting this property will not force a repaint of controls. Therefore it is recommended that this property be set when the applicaiton starts, before the controls have pained, such as in the Load event of the main application form.

Example
Imports Infragistics.Win

' Set all checkboxes to display using Office2007 style. 
UIElementDrawParams.CheckBoxGlyphInfo = UIElementDrawParams.Office2007CheckBoxGlyphInfo
using Infragistics.Win;

// Set all checkboxes to display using Office2007 style. 
UIElementDrawParams.CheckBoxGlyphInfo = UIElementDrawParams.Office2007CheckBoxGlyphInfo;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also