Class: FunctionCallTableField
A Function Call field with a table value.
@interface FunctionCallTableField : FunctionCallField
Initializer
Properties
rowStructure
The row structure for the table.
@property (nonatomic, strong, nonnull, readonly) NSArray<FunctionCallField*>* rowStructure;
rows
The rows in the table.
@property (nonatomic, strong, nullable) NSArray<FunctionCallTableRow*>* rows;
Method: fieldWithName:andStructure:
Creates and initializes an instance of a Function Call table field.
Declaration
+(nullable instancetype) fieldWithName:(nonnull NSString*)fieldName andStructure:(nonnull NSArray<FunctionCallField*>*)rowStructure;
Parameters
Parameter | Value |
---|---|
fieldName | The name of the field. |
rowStructure | The row structure of the table rows. This must be populated if this table is being used for output. If this is an input table, and there is data in the table, this can point to the first data row. |
Returns
Returns the initialized field instance.
Example
Method: initWithFieldName:andStructure:
Constructs the Function Call table field.
Declaration
-(nullable instancetype)initWithFieldName:(nonnull NSString*)fieldName andStructure:(nonnull NSArray<FunctionCallField*>*)rowStructure;
Parameters
Parameter | Value |
---|---|
fieldName | The name of the field. |
rowStructure | The row structure of the table rows. This must be populated if this table is being used for output. If this is an input table, and there is data in the table, this can point to the first data row. |
Returns
Returns the initialized field instance.
Example
Loading...
There was a problem loading this topic