C# Класс AK.F1.Timing.Model.Grid.GridRowModelBase

Наследование: ModelBase
Показать файл Открыть проект

Открытые методы

Метод Описание
GetColumn ( GridColumn column ) : GridColumnModel

Returns the column model for the specified column.

Reset ( ) : void

Resets all the columns specified by this row.

ToString ( ) : string
Update ( GridColumn column, GridColumnColour colour ) : void

Updates the colour of the specified column.

Update ( GridColumn column, GridColumnColour colour, string text ) : void

Updates the text and colour of the specified column.

Защищенные методы

Метод Описание
GridRowModelBase ( int id ) : System

Initialises a new instance of the GridRowModelBase.

Описание методов

GetColumn() публичный Метод

Returns the column model for the specified column.
/// Thrown when the specified is not contained by the row. ///
public GetColumn ( GridColumn column ) : GridColumnModel
column GridColumn The column.
Результат GridColumnModel

GridRowModelBase() защищенный Метод

Initialises a new instance of the GridRowModelBase.
protected GridRowModelBase ( int id ) : System
id int The row Id.
Результат System

Reset() публичный Метод

Resets all the columns specified by this row.
public Reset ( ) : void
Результат void

ToString() публичный Метод

public ToString ( ) : string
Результат string

Update() публичный Метод

Updates the colour of the specified column.
public Update ( GridColumn column, GridColumnColour colour ) : void
column GridColumn The coloumn to update.
colour GridColumnColour The new column colour.
Результат void

Update() публичный Метод

Updates the text and colour of the specified column.
public Update ( GridColumn column, GridColumnColour colour, string text ) : void
column GridColumn The coloumn to update.
colour GridColumnColour The new column colour.
text string The new column text.
Результат void