  | TableOptions(RowHeadersTYPE, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Int32, Int32) Constructor | 
Linkar Framework for .NET and Core
            Initializes a new instance of the TableOptions class.
            Constructor of object used to obtain queries of the LKSCHEMAS schema type.
            
Namespace: Linkar.FunctionsAssembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntaxpublic TableOptions(
	RowHeadersTYPE 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 New ( 
	rowHeaders As RowHeadersTYPE,
	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:
TableOptions(
	RowHeadersTYPE rowHeaders, 
	bool rowProperties, 
	bool onlyVisibles, 
	bool usePropertyNames, 
	bool repeatValues, 
	bool applyConversion, 
	bool applyFormat, 
	bool calculated, 
	bool pagination = false, 
	int regPage = 10, 
	int numPage = 1
)
new : 
        rowHeaders : RowHeadersTYPE * 
        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
*)
-> TableOptionsParameters
- rowHeaders  RowHeadersTYPE
 - Include headings in first row MAINLABEL (main headings), SHORTLABEL (short label headings), and NONE (without headings).
 - rowProperties  Boolean
 - First row contains property names.
 - onlyVisibles  Boolean
 - Use only Visible Schemas and Properties.
 - usePropertyNames  Boolean
 - Use Properties and Table names.
 - repeatValues  Boolean
 - Repeat common atributes in MV and SV groups.
 - applyConversion  Boolean
 - Execute Conversions: With Dictionaries, conversion defined in the dictionary. With Schemas conversions defined in Linkar Schemas.
 - applyFormat  Boolean
 - Execute Formats. With Dictionaries, formats defined in the dictionary. With Schemas formats defined in Linkar Schemas.
 - calculated  Boolean
 - Return the resulting values from the calculated dictionaries.
 - pagination  Boolean  (Optional)
 - True if pagination is being used.
 - regPage  Int32  (Optional)
 - For use with pagination, indicates the number of records by page. Must be greater than 0.
 - numPage  Int32  (Optional)
 - For use with pagination, indicates the page number to obtain. Must be greater than 0.
 
See Also