C# Класс Skybrud.Umbraco.GridData.GridRow

Class representing a row in an Umbraco Grid.
Наследование: Skybrud.Umbraco.GridData.Json.GridJsonObject
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
GetAllControls ( ) : GridControl[]

Gets an array of all nested controls.

GetAllControls ( bool>.Func predicate ) : GridControl[]

Gets an array of all nested controls matching the specified predicate.

GetAllControls ( string alias ) : GridControl[]

Gets an array of all nested controls with the specified editor alias.

Parse ( GridSection section, Newtonsoft.Json.Linq.JObject obj ) : GridRow

Parses a row from the specified obj.

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

Метод Описание
GridRow ( Newtonsoft.Json.Linq.JObject obj ) : System

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

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

Gets an array of all nested controls.
public GetAllControls ( ) : GridControl[]
Результат GridControl[]

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

Gets an array of all nested controls matching the specified predicate.
public GetAllControls ( bool>.Func predicate ) : GridControl[]
predicate bool>.Func The predicate (callback function) used for comparison.
Результат GridControl[]

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

Gets an array of all nested controls with the specified editor alias.
public GetAllControls ( string alias ) : GridControl[]
alias string The editor alias of controls to be returned.
Результат GridControl[]

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

protected GridRow ( Newtonsoft.Json.Linq.JObject obj ) : System
obj Newtonsoft.Json.Linq.JObject
Результат System

Parse() публичный статический Метод

Parses a row from the specified obj.
public static Parse ( GridSection section, Newtonsoft.Json.Linq.JObject obj ) : GridRow
section GridSection The parent section of the row.
obj Newtonsoft.Json.Linq.JObject The instance of JObject to be parsed.
Результат GridRow