Language Constructor(Int32,Int32,Int32,String,String,String,String,DateTime)
- Last UpdatedMar 17, 2026
- 2 minute read
The Language() method is the constructor for the class.
This overload of the method creates a new language object, with all fields initialized according to the supplied input parameters.
'Declaration
Public Function New( _
ByVal langId As Integer, _
ByVal stringId As Integer, _
ByVal grpId As Integer, _
ByVal value As String, _
ByVal context As String, _
ByVal lastEditComment As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Date _
)
'Usage
Dim langId As Integer
Dim stringId As Integer
Dim grpId As Integer
Dim value As String
Dim context As String
Dim lastEditComment As String
Dim lastEditBy As String
Dim lastEditAt As Date
Dim instance As New Language(langId, stringId, grpId, value, context, lastEditComment, lastEditBy, lastEditAt)
public Language(
int langId,
int stringId,
int grpId,
string value,
string context,
string lastEditComment,
string lastEditBy,
DateTime lastEditAt
)
Parameters
- langId
Required. Holds the ID of the language.
- stringId
Required. Holds the ID of the language string.
- grpId
Required. Holds the ID of the language string group.
- value
- Required. Holds the value of the language string.
- context
- Required. Holds the meaning or usage of the string.
- lastEditComment
Optional. Holds comments that describes why this record is being added.
- lastEditBy
Holds the ID of the user who added or last changed the record.
- lastEditAt
Output. Holds the returned date/time when this record was added. The lastEditAt parameter is used by other methods that modify or delete this type of record for optimistic concurrency control.