PFSDllWrapperpfsFindDefault Method |
Return a reference to a non-default parameter node with a default value for the default parameter node which is 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 pfsFindDefault(
IntPtr node
)
Public Shared Function pfsFindDefault (
node As IntPtr
) As IntPtr
public:
static IntPtr pfsFindDefault(
IntPtr node
)
static member pfsFindDefault :
node : IntPtr -> IntPtr
Parameters
- node
- Type: SystemIntPtr
A pfsNode pointer
Return Value
Type:
IntPtrRemarks
pfsExplore does not perform automatic default parameter substitution, so if the user-defined pfsNodeCallback function encounters a pfsNode which pfsIsDefaultPar(pfsNode) evaluates as true, pfsFindDefault(pfsNode) may return a pfsNode reference to the default parameter, or NULL if no default may be found.
See Also