PFSDllWrapperpfsGetNoSections Method |
Return the number of sections connected to the pfsNode passed as argument.
Namespace: DHI.PFSAssembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static int pfsGetNoSections(
IntPtr node
)
Public Shared Function pfsGetNoSections (
node As IntPtr
) As Integer
public:
static int pfsGetNoSections(
IntPtr node
)
static member pfsGetNoSections :
node : IntPtr -> int
Parameters
- node
- Type: SystemIntPtr
A pfsNode pointer
Return Value
Type:
Int32Examples
pfsHandle Hand = pfsLoadFile("somefile.pfv",FALSE);
pfsNode Targ = pfsTargetByNum(Hand, 1);
LONG sNum = pfsGetNoSections(Targ);
See Also