Class GridCellHitTestInfo
This Class saves Hit-Test information for cell renderers and cell button elements.
Inheritance
System.Object
GridCellHitTestInfo
Implements
System.ICloneable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridCellHitTestInfo : ICloneable
Constructors
GridCellHitTestInfo()
Initializes an empty GridCellHitTestInfo object.
Declaration
public GridCellHitTestInfo()
Properties
CellBounds
Gets or sets the cell boundaries.
Declaration
public Rectangle CellBounds { get; set; }
Property Value
Type |
---|
System.Drawing.Rectangle |
CellButtonBounds
Gets or sets the boundaries of the GridCellButton.
Declaration
public Rectangle CellButtonBounds { get; set; }
Property Value
Type |
---|
System.Drawing.Rectangle |
CellButtonElement
Gets or sets the affected GridCellButton.
Declaration
public GridCellButton CellButtonElement { get; set; }
Property Value
Type |
---|
GridCellButton |
CellButtonIndex
Gets or sets the index of the GridCellButton in the GridCellRendererBase.
Declaration
public int CellButtonIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
CellRenderer
Gets or sets the GridCellRendererBase.
Declaration
public GridCellRendererBase CellRenderer { get; set; }
Property Value
Type |
---|
GridCellRendererBase |
ColIndex
Gets or sets the column index.
Declaration
public int ColIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Point
Gets or sets the mouse coordinates.
Declaration
public Point Point { get; set; }
Property Value
Type |
---|
System.Drawing.Point |
RowIndex
Gets or sets the row index.
Declaration
public int RowIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
Clone()
Performs a copy and returns the new object.
Declaration
public object Clone()
Returns
Type | Description |
---|---|
System.Object | A copy of the current object. |
ToString()
Returns a System.String that represents the current System.Object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents the current System.Object. |
Overrides
System.Object.ToString()
Implements
System.ICloneable