| TableOptionsInitializePropertiesLkSchemas Method |
Initializes the properties of the object. To use after building the object with the constructor without arguments.
It is allowed to specify options for creating queries of LKSCHEMAS type schemas.
Namespace:
LinkarCommon
Assembly:
LinkarClientCOM (in LinkarClientCOM.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public void InitializePropertiesLkSchemas(
ROWHEADERS_TYPE rowHeaders,
bool rowProperties,
bool onlyVisibles,
bool usePropertyNames,
bool repeatValues,
bool applyConversion,
bool applyFormat,
bool calculated,
bool pagination = false,
int regPage = 10,
int numPage = 1
)
Public Sub InitializePropertiesLkSchemas (
rowHeaders As ROWHEADERS_TYPE,
rowProperties As Boolean,
onlyVisibles As Boolean,
usePropertyNames As Boolean,
repeatValues As Boolean,
applyConversion As Boolean,
applyFormat As Boolean,
calculated As Boolean,
Optional pagination As Boolean = false,
Optional regPage As Integer = 10,
Optional numPage As Integer = 1
)
public:
void InitializePropertiesLkSchemas(
ROWHEADERS_TYPE rowHeaders,
bool rowProperties,
bool onlyVisibles,
bool usePropertyNames,
bool repeatValues,
bool applyConversion,
bool applyFormat,
bool calculated,
bool pagination = false,
int regPage = 10,
int numPage = 1
)
member InitializePropertiesLkSchemas :
rowHeaders : ROWHEADERS_TYPE *
rowProperties : bool *
onlyVisibles : bool *
usePropertyNames : bool *
repeatValues : bool *
applyConversion : bool *
applyFormat : bool *
calculated : bool *
?pagination : bool *
?regPage : int *
?numPage : int
(* Defaults:
let _pagination = defaultArg pagination false
let _regPage = defaultArg regPage 10
let _numPage = defaultArg numPage 1
*)
-> unit
Parameters
- rowHeaders
- Type: LinkarCommonROWHEADERS_TYPE
Include headings in first row MAINLABEL (main headings), SHORTLABEL (short label headings), and NONE (without headings). - rowProperties
- Type: SystemBoolean
First row contains property names. - onlyVisibles
- Type: SystemBoolean
Use only Visible Schemas and Properties. - usePropertyNames
- Type: SystemBoolean
Use Properties and Table names. - repeatValues
- Type: SystemBoolean
Repeat common atributes in MV and SV groups - applyConversion
- Type: SystemBoolean
Execute Conversions: With Dictionaries, conversion defined in the dictionary. With Schemas conversions defined in Linkar Schemas. - applyFormat
- Type: SystemBoolean
Execute Formats. With Dictionaries, formats defined in the dictionary. With Schemas formats defined in Linkar Schemas. - calculated
- Type: SystemBoolean
Return the resulting values from the calculated dictionaries. - pagination (Optional)
- Type: SystemBoolean
Indicates if pagination is being used or not. - regPage (Optional)
- Type: SystemInt32
In case of pagination indicates the number of records by page. It must be bigger than 0. - numPage (Optional)
- Type: SystemInt32
In case of pagination it indicates the page number to obtain. Must be greater than 0.
See Also