PFSDllWrapperpfsGetSyntaxErr Method |
Return the position in the input file where a parameter file syntax error was detected with an associated error message.
Namespace: DHI.PFSAssembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static void pfsGetSyntaxErr(
IntPtr handle,
out int row,
out int col,
out string text
)
Public Shared Sub pfsGetSyntaxErr (
handle As IntPtr,
<OutAttribute> ByRef row As Integer,
<OutAttribute> ByRef col As Integer,
<OutAttribute> ByRef text As String
)
public:
static void pfsGetSyntaxErr(
IntPtr handle,
[OutAttribute] int% row,
[OutAttribute] int% col,
[OutAttribute] String^% text
)
static member pfsGetSyntaxErr :
handle : IntPtr *
row : int byref *
col : int byref *
text : string byref -> unit
Parameters
- handle
- Type: SystemIntPtr
A pfsHandle - row
- Type: SystemInt32
The error was detected near position Col in line Row - col
- Type: SystemInt32
The error was detected near position Col in line Row - text
- Type: SystemString
Associated message
Remarks
When an error status of pfs_ERR_PARSE has been set by pfsLoadFile, additional diagnostics may be obtained from this function.
See Also