Indicates whether the format can parse the specified text to a numeric value.

Namespace: Dapfor.Net.Formats
Assembly: 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: Boolean
true if this instance can parse the specified text; otherwise, false.

Implements

IFormat..::..CanParse(String, IDataField)

See Also