Inherits from expanz_model_AbstractData : NSObject
Declared in expanz_model_GridData.h

Overview

Repeating data arranged as columns and rows.

Tasks

Properties

columns

rows

source

Instance Methods

addColumn:

Adds a column to the data set.

- (void)addColumn:(expanz_model_Column *)column

Discussion

Adds a column to the data set.

Declared In

expanz_model_GridData.h

addRow:

Adds a row to the data set.

- (void)addRow:(expanz_model_Row *)row

Discussion

Adds a row to the data set.

Declared In

expanz_model_GridData.h

columnWithFieldId:

Returns the column with the supplied field id parameter or nil.

- (expanz_model_Column *)columnWithFieldId:(NSString *)fieldId

Discussion

Returns the column with the supplied field id parameter or nil.

Declared In

expanz_model_GridData.h

columnWithId:

Returns the column with the supplied id parameter or nil.

- (expanz_model_Column *)columnWithId:(NSString *)columnId

Discussion

Returns the column with the supplied id parameter or nil.

Declared In

expanz_model_GridData.h

columns

Returns a copy of the data set’s columns.

- (NSArray *)columns

Discussion

Returns a copy of the data set’s columns.

Declared In

expanz_model_GridData.h

initWithDataId:source:

Initializes an instance with the supplied id and source attributes.

- (id)initWithDataId:(NSString *)dataId source:(NSString *)source

Discussion

Initializes an instance with the supplied id and source attributes.

Declared In

expanz_model_GridData.h

rowWithId:

Returns the row with the supplied row id, or nil.

- (expanz_model_Row *)rowWithId:(NSString *)rowId

Discussion

Returns the row with the supplied row id, or nil.

Declared In

expanz_model_GridData.h

rows

Returns a copy of the data set’s rows.

- (NSArray *)rows

Discussion

Returns a copy of the data set’s rows.

Declared In

expanz_model_GridData.h