Skip to main content
All docs
V25.1
  • ContextItemCollectionOptions.Indent Property

    Gets or sets the distance between context items.

    Namespace: DevExpress.Utils

    Assembly: DevExpress.Utils.v25.1.dll

    NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

    Declaration

    [DefaultValue(0)]
    [XtraSerializableProperty]
    public int Indent { get; set; }

    Property Value

    Type Default Description
    Int32 0

    A value that determines the distance between context items.

    Property Paths

    You can access this nested property as listed below:

    Object Type Path to Indent
    CameraControl
    CalendarControlBase
    ImageSlider
    RepositoryItemPictureEdit
    SvgImageBox
    TileControl
    TileView

    Remarks

    The code below demonstrates how to increase the distance between context items in the top panel.

    pictureEdit1.Properties.ContextButtonOptions.Indent = 30;
    

    The image below demonstrates the result.

    Indent

    Alternatively, you can set the Indent value in a control’s Properties window.

    PropertiesIndent

    See Also