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# |
---|
public bool CanParse(
string text,
IDataField dataField
) |
Visual Basic |
---|
Public Function CanParse (
text As String,
dataField As IDataField
) As Boolean |
Visual C++ |
---|
public:
virtual bool CanParse(
String^ text,
IDataField^ dataField
) sealed |
F# |
---|
abstract CanParse :
text : string *
dataField : IDataField -> bool
override 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:
BooleanAlways false.
Implements
IFormat..::..CanParse(String, IDataField)See Also