OpFromStdOp Constructor
- Last UpdatedNov 06, 2025
- 1 minute read
The OpFromStdOp() method is the constructor for the OpFromStdOp class. It is used to create a new operation from a standard operation.
'Declaration
Public Function New( _
ByVal stdOperId As String, _
ByVal operId As String, _
ByVal operDesc As String, _
ByVal displaySeq As Integer _
)
'Usage
Dim stdOperId As String
Dim operId As String
Dim operDesc As String
Dim displaySeq As Integer
Dim instance As New OpFromStdOp(stdOperId, operId, operDesc, displaySeq)
Parameters
- stdOperId
- Required. Holds the ID of the standard operation on which the new operation is based.
- operId
- Required. Holds the ID of the new operation.
- operDesc
- Required. Holds the description of the new operation.
- displaySeq
- Required. Holds the display sequence of the new operation.