| LkSchemasOptionsInitializePropertiesSqlMode Method |
Initializes the properties of the object. To use after building the object with the constructor without arguments.
Creation options are allowed for SQLMODE type schemas.
Namespace:
LinkarCommon
Assembly:
LinkarClientCOM (in LinkarClientCOM.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public void InitializePropertiesSqlMode(
bool onlyVisibles,
bool pagination = false,
int regPage = 10,
int numPage = 1
)
Public Sub InitializePropertiesSqlMode (
onlyVisibles As Boolean,
Optional pagination As Boolean = false,
Optional regPage As Integer = 10,
Optional numPage As Integer = 1
)
public:
void InitializePropertiesSqlMode(
bool onlyVisibles,
bool pagination = false,
int regPage = 10,
int numPage = 1
)
member InitializePropertiesSqlMode :
onlyVisibles : 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
- onlyVisibles
- Type: SystemBoolean
Use only Visible Schemas and Properties. - 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