Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / Row Class / Indented Property


In This Topic
    Indented Property (Row)
    In This Topic
    Gets or sets a boolean value indicating if the row is indented.
    Syntax
    'Declaration
     
    <DescriptionAttribute("Indicates if the row is indented.")>
    <CategoryAttribute("Appearance")>
    <ApplyToDesignerAttribute(True)>
    Public Property Indented As Boolean
    'Usage
     
    Dim instance As Row
    Dim value As Boolean
     
    instance.Indented = value
     
    value = instance.Indented
    [Description("Indicates if the row is indented.")]
    [Category("Appearance")]
    [ApplyToDesigner(true)]
    public bool Indented {get; set;}

    Property Value

    true if the row is indented; false otherwise.
    Remarks

    If true, the row will be drawn outside of the group margin. If false, the row will be drawn over the group margin. This means that it will have the same indentation as the GroupManagerRow.

    To reset the value of the Indented property to its default value, DefaultIndented, the ResetIndented method must be called.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also