VisualGridElement Class
See Also  Members  
Xceed.Grid Assembly > Xceed.Grid Namespace : VisualGridElement Class

Represents any visual element in the grid and exposes properties and methods that allow their manipulations. The Column and Group classes do not have a visual representation therefore, they derive directly from the GridElement class.

Object Model











Syntax

Visual Basic (Declaration) 
<DefaultEventAttribute("Click")>
Public MustInherit Class VisualGridElement 
   Inherits GridElement
C# 
[DefaultEventAttribute("Click")]
public abstract class VisualGridElement : GridElement 

Remarks

When setting properties that modify the contents of a grid element, for example the GridElement.Font or GridElement.ForeColor properties, it is important to remember that if the grid element is a cell, then only the cell will be modified. If the grid element is a row or column, then all the cells in the row or column will be modified.

Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      Xceed.Grid.GridElementBase
         Xceed.Grid.GridElement
            Xceed.Grid.VisualGridElement
               Xceed.Grid.Cell
               Xceed.Grid.FixedColumnSplitter
               Xceed.Grid.GroupMargin
               Xceed.Grid.Row
               Xceed.Grid.RowSelector

Requirements

Supported Operating Systems: Windows 2000 Service Pack 3; Windows 98; Windows 98 Second Edition; Windows ME; Windows Server 2003; Windows Vista Business; Windows Vista Business 64-bit edition; Windows Vista Enterprise; Windows Vista Enterprise 64-bit edition; Windows Vista Home Basic; Windows Vista Home Basic 64-bit edition; Windows Vista Home Premium; Windows Vista Home Premium 64-bit edition; Windows Vista Starter; Windows Vista Ultimate; Windows Vista Ultimate 64-bit edition; Windows XP Service Pack 2

Supported Frameworks: Microsoft .NET Framework version 2.0; Microsoft .NET Framework version 3.0

See Also