Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / GridControl Class / AllowCellNavigation Property


In This Topic
    AllowCellNavigation Property (GridControl)
    In This Topic
    Gets or sets a boolean value indicating if it is possible to navigate from cell to cell in the grid.
    Syntax
    'Declaration
     
    <DescriptionAttribute("Indicates if it is possible to navigate to each cell in the grid.")>
    <CategoryAttribute("Behavior")>
    Public Property AllowCellNavigation As Boolean
    'Usage
     
    Dim instance As GridControl
    Dim value As Boolean
     
    instance.AllowCellNavigation = value
     
    value = instance.AllowCellNavigation
    [Description("Indicates if it is possible to navigate to each cell in the grid.")]
    [Category("Behavior")]
    public bool AllowCellNavigation {get; set;}

    Property Value

    true if it is possible to navigate from cell to cell in the grid; false otherwise.
    Remarks

    If both AllowCellNavigation and each row's AllowCellNavigation property is false, CurrentCell will always be a null reference (Nothing in Visual Basic) and cannot be set. This also implies that cells will never have a focus rectangle.

    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