Indicates whether the format can parse the specified text to a unformatted value.
            
Namespace: Dapfor.Net.FormatsAssembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)
Syntax
| C# | 
|---|
bool CanParse(
	string text,
	IDataField dataField
)  | 
| Visual Basic | 
|---|
Function CanParse ( 
	text As String,
	dataField As IDataField
) As Boolean  | 
| Visual C++ | 
|---|
bool CanParse(
	String^ text, 
	IDataField^ dataField
)  | 
| F# | 
|---|
abstract CanParse : 
        text : string * 
        dataField : IDataField -> bool 
 | 
Parameters
- text
 - Type: System..::..String
The text. 
- dataField
 - Type: Dapfor.Net.Data..::..IDataField
The data field. 
Return Value
Type: 
Booleantrue if this instance can parse the specified text; otherwise, 
false.
            
See Also