[]
Implements the functionality to create grid cells dynamically.
public class GridControlAdapter
Name | Description |
---|---|
GridControlAdapter() | Initializes a new instance of the GridControlAdapter class. |
Name | Description |
---|---|
ColumnsCount | Gets the total number of columns. |
DefaultColumn | Gets the default column dimensions. |
DefaultRow | Gets the default row dimensions. |
Grid | Gets the associated grid. |
IsCellSelection | Gets whether the selection is composed by cells. |
IsColumnSelection | Gets whether the selection is composed by all the cells of the columns. |
IsMouseOverEnabled | Gets whether the mouse-over state is reflected in the cells. |
IsMultiRangeSelection | Gets whether the selection can be composed by non-contiguous ranges of cells. |
IsMultipleSelection | Gets whether the selection can be a range of cells. |
IsRowSelection | Gets whether the selection is composed by all the cells of the rows. |
IsSelectionEnabled | Gets whether there is any selection possible in the grid. |
NavigableRange | Gets the range of cells where a user can navigate with the keyboard as well as edit and select cells |
RowsCount | Gets the total number of rows. |
Name | Description |
---|---|
AllowEditing(GridControlRange) | Returns true when the cell in the specified range can be edited. |
ApplySelectionState(GridControlRange, GridControlCellView) | Applies the selection brushes. |
BindCell(GridControlRange, GridControlCellView) | Binds the cell. |
CanDragColumn(int, int) | Determines whether the column can be dragged. |
CanDragRow(int, int) | Determines whether the row can be dragged. |
CanDropColumn(int, int) | Determines whether the |
CanDropRow(int, int) | Determines whether the |
CanSetColumnWidth(int, int) | Determines whether the width of a column can be set. |
CanSetRowHeight(int, int) | Determines whether the height of the row can be set. |
Contains(GridControlAdapter) | Returns true if the specified |
CreateCell(GridControlRange, object) | Creates the content of the cell. |
CreateCellEditor(GridControlRange) | Creates the cell editor. |
DropColumnAsync(int, int) | Drops the column from the original index |
DropRowAsync(int, int) | Drops the row from the original index |
GetCellKind(GridControlRange) | Gets a key that defines the type of cell content. |
GetCellText(GridControlRange) | Gets the text representing the content of a cell. |
GetColumnInfo(int) | Gets the dimensions for the specified column. |
GetColumnOffset(int) | Gets the distance between the origin and the specified column. |
GetColumnOffset(int, int) | Gets the distance between the two specified columns. |
GetColumnRenderWidth(int) | Gets the render width of the specified column. |
GetDefaultColumn() | Gets the default column dimensions. |
GetDefaultRow() | Gets the default row dimensions. |
GetFrozenBottomRows() | Gets the number of frozen rows at the bottom. |
GetFrozenColumns() | Gets the number of frozen columns. |
GetFrozenRows() | Gets the number of frozen rows. |
GetHoverRange(int, int) | Gets range of cells from the coordinates of the hovered cell. |
GetMergedRange(GridControlRange) | Gets a GridControlRange that specifies the merged extent of a cell. |
GetRowInfo(int) | Gets the dimensions for the specified row. |
GetRowOffset(int) | Gets the distance between the origin and the specified row. |
GetRowOffset(int, int) | Gets the distance between the two specified rows. |
GetRowRenderHeight(int) | Gets the render height of the specified row. |
GetSelectedTimes(GridControlRange) | Gets the number of times a cell is selected. |
GetSelectionRange(GridControlRange) | Gets the effective selection range from another range. |
IsBottomFreezingSeparatorVisible() | Gets whether the bottom freezing separator is visible. |
IsLeftFreezingSeparatorVisible() | Gets whether the left freezing separator is visible. |
IsMouseOverRange(GridControlRange) | Gets whether the specified |
IsTopFreezingSeparatorVisible() | Gets whether the top freezing separator is visible. |
OnBeginningEdit(GridControlEditEventArgs) | Called when the editing of a cell is about to start. |
OnCellDoubleTapped(GridControlTapEventArgs) | Called when a cell was double-tapped. |
OnCellEditEnded(GridControlEditEventArgs) | Called after the editing of a cell ended. |
OnCellEditEnding(GridControlEditEventArgs) | Called when the editing of a cell is about to end. |
OnCellLongPressed(GridControlTapEventArgs) | Called when a cell was long-tapped(Holding). |
OnCellPointerEntered(GridControlInputEventArgs) | Called when the pointer enters in a cell area. |
OnCellPointerExited(GridControlInputEventArgs) | Called when the pointer exits from a cell area. |
OnCellTapped(GridControlTapEventArgs) | Called when a cell was tapped. |
OnColumnsChanged(GridControlAdapterNotifyChange) | Notifies the adapter there were changed in the model columns. |
OnColumnsChanging(GridControlAdapterNotifyChange) | Notifies the adapter there will be changed in the model columns. |
OnCursorChanged(GridControlRangeEventArgs) | Called after the cursor is changed. |
OnCursorChanging(GridControlRangeEventArgs) | Called before the cursor is changed. |
OnEditEnded(GridControlRange, FrameworkElement, bool) | Called when the editing of a cell ended. |
OnKeyDown(KeyRoutedEventArgs) | Called when the a keyboard key is pressed. |
OnPrepareCellForEdit(GridControlEditEventArgs) | Called when the editing of a cell is about to start and the editor was already created. |
OnResizedColumn(GridControlRangeEventArgs) | Called after a column is resized. |
OnResizedRow(GridControlRangeEventArgs) | Called after a row is resized. |
OnResizingColumn(GridControlRangeEventArgs) | Called before a column is resized. |
OnResizingRow(GridControlRangeEventArgs) | Called before a row is resized. |
OnRowsChanged(GridControlAdapterNotifyChange) | Notifies the adapter there were changes in the model rows. |
OnRowsChanging(GridControlAdapterNotifyChange) | Notifies the adapter there will be changed in the model rows. |
OnSelectionChanged(GridControlSelectionEventArgs) | Called after the selection is changed. |
OnSelectionChanging(GridControlSelectionEventArgs) | Called when the selection is changing. |
OnTextInput(CoreTextTextUpdatingEventArgs) | Called when the an text-input event happened. |
PrepareCell(GridControlRange, GridControlCellView, Thickness) | Prepares the cell to be shown. |
RefreshSelectedRanges(IReadOnlyList<GridControlRange>) | Refreshes the grid according to the selected ranges. |
RevertCell(GridControlRange, GridControlCellView) | Reverts the style of a cell to be used again. |
SaveDesiredCellSize(GridControlRange) | Returns whether the desired size for a specific cell is taken into account. |
SetCellValue(GridControlRange, object) | Sets the value of a specified cell. |
SetColumnWidth(int, double) | Sets the width of the specified column. |
SetRowHeight(int, double) | Sets the height of the row. |
UnbindCell(GridControlRange, GridControlCellView) | Unbinds the cell. |