Version

CheckBoxImageGlyphInfo Constructor(Bitmap,String)

Creates a new CheckBoxGlyphInfo using the combined image specified.
Syntax
'Declaration
 
Public Function New( _
   ByVal combinedGlyphImage As Bitmap, _
   ByVal description As String _
)
public CheckBoxImageGlyphInfo( 
   Bitmap combinedGlyphImage,
   string description
)

Parameters

combinedGlyphImage
A bitmap containing all possible states of the CheckBox.
description
A string description of the glyphs.
Remarks

The combinedGlyphImage is a single image which contains all of the possisble states that a CheckBox Glyph may draw. The images must all be the same size (glyphSize) and are arranged in a grid.

There must be three rows in the grid.

Row 0 is the CheckBox in it's unchecked state.

Row 1 is the CheckBox in it's checked state.

Row 2 is the CheckBox in it's indeterminate state.

There must be 5 columns in the grid.

Column 0 is the CheckBox in it's disabled state.

Column 1 is the CheckBox in it's normal state.

Column 2 is the CheckBox in it's MouseOver state.

Column 3 is the CheckBox in it's MouseDown state.

Column 4 is the CheckBox in it's MouseOver and MouseDown state.

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