Class GridExtension
Represents an extension class that provides the methods for getting the Grid System.Windows.UIElement at the given mouse pointer position.
Inheritance
System.Object
GridExtension
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)
System.Object.ToString()
Namespace: Syncfusion.Windows.Controls
Assembly: Syncfusion.SfShared.Wpf.dll
Syntax
public static class GridExtension
Methods
ElementAt(Grid, Int32, Int32)
Gets the element at the given position.
Declaration
public static UIElement ElementAt(this Grid grid, int row, int column)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Controls.Grid | grid | input grid |
System.Int32 | row | row at the grid |
System.Int32 | column | column at the grid |
Returns
Type | Description |
---|---|
System.Windows.UIElement | returns element at the given position. |