'Declaration
Public Shared Function Check( _ ByRef variableID As System.Integer, _ ByVal variableName As System.String, _ ByVal access As VariableAccess, _ ByVal parentFolderID As System.Integer, _ ByVal isNameRelative As System.Boolean, _ ByVal js As Server _ ) As ValidationLog
'Usage
Dim variableID As System.Integer Dim variableName As System.String Dim access As VariableAccess Dim parentFolderID As System.Integer Dim isNameRelative As System.Boolean Dim js As Server Dim value As ValidationLog value = Variable.Check(variableID, variableName, access, parentFolderID, isNameRelative, js)
public static ValidationLog Check( ref System.int variableID, System.string variableName, VariableAccess access, System.int parentFolderID, System.bool isNameRelative, Server js )
Parameters
- variableID
- The Variable ID of the validated Variable.
- variableName
- The Variable Name that we want to check.
- access
- The access to the Variable that we want.
- parentFolderID
- The parent Folder ID of the Variable if the name is relative.
- isNameRelative
- True if the Variable name is not a fully qualified path.
- js
- The JAMS Server that should do the check.