Skip to main content
A newer version of this page is available. .

GlyphStyle Enum

The checkbox glyph styles enumeration.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v19.2.Core.dll

Declaration

[ResourceFinder(typeof(ResFinder))]
public enum GlyphStyle

Members

Name Description
StandardBox1

The StandardBox1 checkbox glyph style

StandardBox2

The StandardBox2 checkbox glyph style

YesNoBox

The YesNoBox checkbox glyph style

YesNoSolidBox

The YesNoSolidBox checkbox glyph style

YesNo

The YesNo checkbox glyph style

RadioButton

The RadioButton checkbox glyph style

Smiley

The Smiley checkbox glyph style

Thumb

The Thumb checkbox glyph style

Toggle

The Toggle checkbox glyph style

Star

The Star checkbox glyph style

Heart

The Heart checkbox glyph style

Related API Members

The following properties accept/return GlyphStyle values:

Library Related API Members
Cross-Platform Class Library CheckBoxBrick.GlyphStyle
Reporting CheckBoxGlyphOptions.Style

Remarks

The CheckBoxBrick.GlyphStyle property provides access to the GlyphStyle enumeration values.

The following glyph styles are available:

xrCheckBox-Styles

Example

The code sample below illustrates how to create a CheckBoxBrick object and set its glyph style to Thumb style.

using DevExpress.XtraPrinting;
using DevExpress.XtraPrinting.Drawing;

// ...

    CheckBoxBrick cBrick = new CheckBoxBrick();
    cBrick.GlyphStyle = GlyphStyle.Thumb;
See Also