Skip to main content
All docs
V26.1
  • GlyphStyle Enum

    The checkbox glyph styles enumeration.

    Namespace: DevExpress.XtraPrinting

    Assembly: DevExpress.Printing.v26.1.Core.dll

    NuGet Package: DevExpress.Printing.Core

    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

    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