GridRowAccessor Class Reference

Inherits from NSObject
Declared in GridPanel.h

Overview

Class GridRowAccessor.

  panel

Gets the panel that is being indexed.

@property (readonly) GridPanel *panel

Discussion

Gets the panel that is being indexed.

Declared In

GridPanel.h

  rowIndex

Gets the index for the row being accessed

@property (readonly) int rowIndex

Discussion

Gets the index for the row being accessed

Declared In

GridPanel.h

– initWithPanel:andIndex:

Initialize an object for GridRowAccessor.

- (id _Nonnull)initWithPanel:(GridPanel *_Nonnull)panel andIndex:(int)index

Parameters

panel

the specified GridPanel.

index

the specified index.

Return Value

an object for GridRowAccessor.

Discussion

Initialize an object for GridRowAccessor.

Declared In

GridPanel.h

– objectAtIndexedSubscript:

Get cell data for provided column index.

- (NSObject *_Nullable)objectAtIndexedSubscript:(int)key

Parameters

key

the specified column.

Return Value

a NSObject value.

Discussion

Get cell data for provided column index.

Declared In

GridPanel.h

– setObject:atIndexedSubscript:

Set data of cell with provided object and column index.

- (void)setObject:(NSObject *_Nullable)obj atIndexedSubscript:(int)key

Parameters

obj

the specified value.

key

the specified column.

Discussion

Set data of cell with provided object and column index.

Declared In

GridPanel.h