corelibraries-devexpress-dot-xtraprinting-a7f8c9f2.md
The checkbox glyph styles enumeration.
Namespace : DevExpress.XtraPrinting
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
[ResourceFinder(typeof(ResFinder))]
public enum GlyphStyle
<ResourceFinder(GetType(ResFinder))>
Public Enum GlyphStyle
| 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
|
The following properties accept/return GlyphStyle values:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | CheckBoxBrick.GlyphStyle |
| .NET Reporting Tools | CheckBoxGlyphOptions.Style |
The CheckBoxBrick.GlyphStyle property provides access to the GlyphStyle enumeration values.
The following glyph styles are available:
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;
Imports DevExpress.XtraPrinting
Imports DevExpress.XtraPrinting.Drawing
' ...
Private cBrick As New CheckBoxBrick()
cBrick.GlyphStyle = GlyphStyle.Thumb
See Also