x4Trace Documentation v1.0
|
Classes | |
class | ICell |
Represents a cell of grid. More... | |
class | ICellData |
Represents a data of cell. More... | |
class | ICellList |
Represents a list of cells. Row is also a cell list. More... | |
class | IColumn |
Represents a column of grid. More... | |
class | IColumns |
class | IGrid |
Represents a grid, operating system independent. More... | |
interface | IGridControl |
Represents an interface of input control of grid. Grid can show only controls with this interface. More... | |
class | IRows |
represents the rows of a grid. More... | |
Enumerations | |
enum | MergeType { None = 0 , Primary = 1 , Secondary = 2 } |
Merge type of cell. | |
enum | Navigation { Left , Rigth , Up , Down } |
Navigation of cells. Moves the current cell. More... | |
enum | CurrentCellDrawingMode { Fill , Frame } |
Drawing mode of current cell. More... | |
enum | SortingType { ASC , DESC } |
Sorting type of column. | |
Functions | |
delegate void | EventCurrentCellChanged (ICell oldCell, ICell newCell) |
Delegate of current cell changed. | |
delegate void | EventCellDataChanged (ICell cell, string oldValue, string newValue) |
Delegate of data change of cell. | |
delegate void | EventColumnClick (IColumn column) |
Delegate of column click event. | |
delegate void | EventRowDeleting (ICellList cells) |
Delegate of row deleting. | |
delegate void | EventRowAdded (ICellList cells) |
Delegate of row added. | |
delegate void | EventRowAdding (ICellList cells, ref bool can) |
Delegate of adding row. | |
delegate void | EventCellMouseDown (ICell Cell) |
Delegate of mouse down of cell. | |
delegate void | KeyDownEvent (object sender, int key, bool down) |
Key down event. | |
delegate void | VerticalScrollChanged (int val) |
Delegate of vertical scroll change. | |
delegate void | HorizontalScrollChanged (int val) |
Delegate of vertical scroll change. | |
delegate void | RefreshRequest (IGrid grid) |
Delegate of refresh request. | |
delegate void | DrawingAreaChanged (IGrid grid) |
Delegate of drawing area changed. | |
delegate void | CursorChanged (IGraphics.Cursor cursor) |
Delegate of cursor changed. | |
delegate void | AddControlEvt (IGridControl control) |
Delagate of add control event. | |
delegate void | RemoveControlEvt (IGridControl control) |
Delegate of remove control event. | |
delegate void | IGCFocusLeave (IGridControl control) |
delegate of leave of focus event. | |
delegate void | IGCKeyDown (IGridControl control, int key) |
Delegate of key down event. | |
delegate void | IGCKeyUp (IGridControl control, int key) |
Delegate of key up event. | |
delegate void | IGCScroll (IGridControl control, int val) |
Delegate of scroll event. | |
delegate void | IGCShow (IGridControl control) |
Delegate of show event. | |
delegate void | IGCHide (IGridControl control, int val) |
Delegate of hide event. | |
delegate void IGraphics.Grid.AddControlEvt | ( | IGridControl | control | ) |
Delagate of add control event.
control | The control. |
delegate void IGraphics.Grid.CursorChanged | ( | IGraphics.Cursor | cursor | ) |
Delegate of cursor changed.
cursor | The cursor. |
delegate void IGraphics.Grid.DrawingAreaChanged | ( | IGrid | grid | ) |
Delegate of drawing area changed.
grid | Grid of area. |
delegate void IGraphics.Grid.EventCellDataChanged | ( | ICell | cell, |
string | oldValue, | ||
string | newValue ) |
Delegate of data change of cell.
cell | The cell. |
oldValue | Old value. |
newValue | New value. |
delegate void IGraphics.Grid.EventCellMouseDown | ( | ICell | Cell | ) |
Delegate of mouse down of cell.
Cell | Cell of mouse down event. |
delegate void IGraphics.Grid.EventColumnClick | ( | IColumn | column | ) |
Delegate of column click event.
column | The column. |
Delegate of current cell changed.
oldCell | Old cell. |
newCell | New cell. |
delegate void IGraphics.Grid.EventRowAdded | ( | ICellList | cells | ) |
Delegate of row added.
cells | Added row. |
delegate void IGraphics.Grid.EventRowAdding | ( | ICellList | cells, |
ref bool | can ) |
Delegate of adding row.
cells | Row to add. |
can | Adding is enabled. If you set false the adding will be cancelled. |
delegate void IGraphics.Grid.EventRowDeleting | ( | ICellList | cells | ) |
Delegate of row deleting.
cells | The row to delete. |
delegate void IGraphics.Grid.HorizontalScrollChanged | ( | int | val | ) |
Delegate of vertical scroll change.
val | Value of scroll. |
delegate void IGraphics.Grid.IGCFocusLeave | ( | IGridControl | control | ) |
delegate of leave of focus event.
control | The control. |
delegate void IGraphics.Grid.IGCHide | ( | IGridControl | control, |
int | val ) |
Delegate of hide event.
control | The control. |
val | Value. |
delegate void IGraphics.Grid.IGCKeyDown | ( | IGridControl | control, |
int | key ) |
Delegate of key down event.
control | The control. |
key | Key code. |
delegate void IGraphics.Grid.IGCKeyUp | ( | IGridControl | control, |
int | key ) |
Delegate of key up event.
control | The control. |
key | Key code. |
delegate void IGraphics.Grid.IGCScroll | ( | IGridControl | control, |
int | val ) |
Delegate of scroll event.
control | The control. |
val | The value of scroll. |
delegate void IGraphics.Grid.IGCShow | ( | IGridControl | control | ) |
Delegate of show event.
control | The control. |
delegate void IGraphics.Grid.KeyDownEvent | ( | object | sender, |
int | key, | ||
bool | down ) |
Key down event.
sender | Sender. |
key | Key value. |
down | True, when down. |
delegate void IGraphics.Grid.RefreshRequest | ( | IGrid | grid | ) |
Delegate of refresh request.
grid | Grid of request. |
delegate void IGraphics.Grid.RemoveControlEvt | ( | IGridControl | control | ) |
Delegate of remove control event.
control | Te conteol. |
delegate void IGraphics.Grid.VerticalScrollChanged | ( | int | val | ) |
Delegate of vertical scroll change.
val | Value of scroll. |