Skip to main content
All docs
V26.1
  • CheckBoxBrick.GlyphSize Property

    Gets or sets the checkbox glyph pixel size.

    Namespace: DevExpress.XtraPrinting

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

    NuGet Package: DevExpress.Printing.Core

    Declaration

    public SizeF GlyphSize { get; set; }

    Property Value

    Type Description
    SizeF

    The checkbox glyph pixel size

    Remarks

    The code sample below illustrates how to create a CheckBoxBrick object and set its glyph size to 18 pixels.

    using DevExpress.XtraPrinting;
    using DevExpress.XtraPrinting.Drawing;
    // ...
    public CheckBoxBrick SetGlyphStyle(CheckBoxBrick cBrick) {
        cBrick.GlyphSize = new SizeF(18, 18);
        cBrick.GlyphStyle = GlyphStyle.Thumb;
        return cBrick;
    }
    
    See Also