ITableMetrics
Interface
An interface that encapsulates data about the current TableBase layout.
Definition
Namespace:Telerik.Windows.Controls.Pivot
Assembly:Telerik.Windows.Controls.Pivot.dll
Syntax:
C#
public interface ITableMetrics
Properties
CellsBounds
Rect
Gets the rectangle that contains the visible cells.
C#
Rect CellsBounds { get; }
Gets the rectangle that contains the visible column headers.
C#
Rect ColumnHeadersBounds { get; }
Gets and enumeration with the currently visible columns.
C#
IEnumerable<int> Columns { get; }
RowHeadersBounds
Rect
Gets the rectangle that contains the visible row headers.
C#
Rect RowHeadersBounds { get; }
Gets an enumeration with the currently visible rows.
C#
IEnumerable<int> Rows { get; }