PFSDllWrapperpfsSectionByNum Method |
Return a reference to the n'th section of the pfsNode (target/section) passed as argument.
Namespace:
DHI.PFS
Assembly:
DHI.PFS (in DHI.PFS.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic static IntPtr pfsSectionByNum(
IntPtr node,
int sectionNo1
)
Public Shared Function pfsSectionByNum (
node As IntPtr,
sectionNo1 As Integer
) As IntPtr
public:
static IntPtr pfsSectionByNum(
IntPtr node,
int sectionNo1
)
static member pfsSectionByNum :
node : IntPtr *
sectionNo1 : int -> IntPtr
Parameters
- node
- Type: SystemIntPtr
A pfsNode pointer - sectionNo1
- Type: SystemInt32
Return Value
Type:
IntPtrA PfsNode pointer
RemarksIf the section does not exist, NULL is returned.
Examples
pfsHandle Hand = pfsLoadFile("somefile.pfv",FALSE);
pfsNode Targ = pfsTargetByNum(Hand, 3);
pfsNode section = pfsSectionByNum(Targ, 1);
See Also