Skip to main content
All docs
V25.1
  • DxListEditorColumn.Visible Property

    Specifies whether the column is visible.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(true)]
    [Parameter]
    public bool Visible { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true if the column is visible; otherwise, false.

    Remarks

    @using StaffData
    
    <DxListBox Data="@Staff.DataSource"
               @bind-Values="@Values">
        <Columns>
            <DxListEditorColumn FieldName="Id" Width="50px" />
            <DxListEditorColumn FieldName="FirstName" Caption="Name"/>
            <DxListEditorColumn FieldName="LastName" Caption="Surname" Visible="false"/>
        </Columns>
    </DxListBox>
    
    @code {
        IEnumerable<Person> Values { get; set; } = Staff.DataSource.Take(1);
    }
    

    List Box - Multiple Columns

    Run Demo: List Box – Multiple Columns

    Implements

    See Also