SpreadsheetFieldValueMaxFields Property |
Gets or sets the number of columns to search across for field names and associated values.
Namespace: Test.FrameworkAssembly: Test.Framework (in Test.Framework.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public int MaxFields { get; set; }
Public Property MaxFields As Integer
Get
Set
public:
property int MaxFields {
int get ();
void set (int value);
}
member MaxFields : int with get, set
Property Value
Type:
Int32Remarks
The code searches for field names in columns whose name starts with
FieldPrefix followed by a digit.
The digit starts at 1 and increments up to the MaxFields value, inclusive. So if MaxFields is 3,
FieldPrefix is 'Field'
and
ValuePrefix is 'Value' then the columns Field1, Field2 and Field3 are searched for field names and the
associated values are expected to be found in one of Value1, Value2 or Value3.
See Also