PFSDllWrapperpfsAddSectionDef Method |
Define the start of a new section and its attributes within the scope of a target.
The section definition must be terminated by a pfsEndSection.
Restrictions: The pfsAddSectionDef must be called within the scope of a target.
Namespace:
DHI.PFS
Assembly:
DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic static void pfsAddSectionDef(
IntPtr handle,
string sectionName,
bool multi,
bool mandatory
)
Public Shared Sub pfsAddSectionDef (
handle As IntPtr,
sectionName As String,
multi As Boolean,
mandatory As Boolean
)
public:
static void pfsAddSectionDef(
IntPtr handle,
String^ sectionName,
bool multi,
bool mandatory
)
static member pfsAddSectionDef :
handle : IntPtr *
sectionName : string *
multi : bool *
mandatory : bool -> unit
Parameters
- handle
- Type: SystemIntPtr
A pfsHandle pointer - sectionName
- Type: SystemString
Name of section - multi
- Type: SystemBoolean
Indicates if multiple instances of the section are allowed (contrary to a unique section). - mandatory
- Type: SystemBoolean
Indicates if the section is mandatory (contrary to optional).
See Also