PFSDllWrapperpfsFindSectionByHandle Method |
Returns the section specified in the sectionPath parameter
Namespace: DHI.PFSAssembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static IntPtr pfsFindSectionByHandle(
IntPtr node,
string sectionPath
)
Public Shared Function pfsFindSectionByHandle (
node As IntPtr,
sectionPath As String
) As IntPtr
public:
static IntPtr pfsFindSectionByHandle(
IntPtr node,
String^ sectionPath
)
static member pfsFindSectionByHandle :
node : IntPtr *
sectionPath : string -> IntPtr
Parameters
- node
- Type: SystemIntPtr
a pfsNode pointer - sectionPath
- Type: SystemString
the position of the section specified relative from the nPfs node
Return Value
Type:
IntPtrRemarks
The section path is specified in the form section1/section2/section3. A section
name can be ".." which means the parent section to the current section.
The section can include a sequence number in the form "name:no" - no gives
the sequence number of section with the specified name. This is only relevant
if more than one section at the same level have the same name.
See Also