PFSDllWrapperpfsKeywordByNum Method |
Return a reference to the n'th keyword of the pfsNode (target/section) passed as argument.
Namespace: DHI.PFSAssembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static IntPtr pfsKeywordByNum(
IntPtr node,
int keywordNum
)
Public Shared Function pfsKeywordByNum (
node As IntPtr,
keywordNum As Integer
) As IntPtr
public:
static IntPtr pfsKeywordByNum(
IntPtr node,
int keywordNum
)
static member pfsKeywordByNum :
node : IntPtr *
keywordNum : int -> IntPtr
Parameters
- node
- Type: SystemIntPtr
A pfsNode pointer - keywordNum
- Type: SystemInt32
Number of keyword, 1-based
Return Value
Type:
IntPtrA 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