Click or drag to resize
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: 16.0.0.0 (11.1.1.1111)
Syntax
public static IntPtr pfsSectionByNum(
	IntPtr node,
	int sectionNo1
)

Parameters

node
Type: SystemIntPtr
A pfsNode pointer
sectionNo1
Type: SystemInt32

Return Value

Type: IntPtr
A PfsNode pointer
Remarks
If 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