| LkItems(String, String, String) Constructor |
Linkar Framework for .NET and Core
Initializes a new instance of the LkItem class.
Namespace: Linkar.LkDataAssembly: Linkar.LkData (in Linkar.LkData.dll) Version: 2.3.1
Syntax public LkItems(
string[] lstDictsId,
string[] lstDicts,
string[] lstDictsCalculated = null
)
Public Sub New (
lstDictsId As String(),
lstDicts As String(),
Optional lstDictsCalculated As String() = Nothing
)
public:
LkItems(
array<String^>^ lstDictsId,
array<String^>^ lstDicts,
array<String^>^ lstDictsCalculated = nullptr
)
new :
lstDictsId : string[] *
lstDicts : string[] *
?lstDictsCalculated : string[]
(* Defaults:
let _lstDictsCalculated = defaultArg lstDictsCalculated null
*)
-> LkItems
Parameters
- lstDictsId String
- Array with the dictionary names for record Ids. The same array for each LkItem that is stored in the list.
- lstDicts String
- Array with the dictionarty names for record fields. The same array for each LkItem that is stored in the list.
- lstDictsCalculated String (Optional)
- Array with the dictionary names for calculated fields of the record. The same array for each LkItem that is stored in the list.
See Also