 | LayoutAddField Method |
Namespace:
OBCOM.NetSwitchLib.Layouts
Assembly:
OBCOM.NetSwitchLib (in OBCOM.NetSwitchLib.dll) Version: 1.48.7760.35650 (1.48.7760.35650)
Syntaxpublic LayoutField AddField(
FieldType type,
string name,
int length,
int scale,
string defval
)
Public Function AddField (
type As FieldType,
name As String,
length As Integer,
scale As Integer,
defval As String
) As LayoutField
Parameters
- type
- Type: OBCOM.NetSwitchLib.LayoutsFieldType
The type of the field.
- name
- Type: SystemString
The name of the field.
- length
- Type: SystemInt32
The length of the field.
- scale
- Type: SystemInt32
The numeric scale of the field.
- defval
- Type: SystemString
The default value of the field.
Return Value
Type:
LayoutField
The created and appended
LayoutField.
Remarks
Certain calls to this method must be made in pairs. In particular,
if a field of type
LIST is added, then this
list must be closed (or terminated) adding a field of type
LISTEND. This last call does not actually add a
LayoutField; it just completes the definition of the list field.
See Also