Click or drag to resize
PFSDllWrapperpfsKeywordByNum Method
Return a reference to the n'th keyword 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 pfsKeywordByNum(
	IntPtr node,
	int keywordNum
)

Parameters

node
Type: SystemIntPtr
A pfsNode pointer
keywordNum
Type: SystemInt32
Number of keyword, 1-based

Return Value

Type: IntPtr
A pfsNode pointer. If the keyword does not exist, NULL is returned.
Examples
pfsHandle Hand = pfsLoadFile("somefile.pfv",FALSE); pfsNode Targ = pfsTargetByNum(Hand,1); pfsNode kNum = pfsGetKeywordByNum(Targ,3);
See Also