[This is preliminary documentation and is subject to change.]

For given string gets value indicating if it consists only of characters acceptable as part of number

Namespace: Tools.WindowsT.WPF.ControlsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected virtual bool AreCharsAccepltable(
	string text
)
Visual Basic
Protected Overridable Function AreCharsAccepltable ( _
	text As String _
) As Boolean
Visual C++
protected:
virtual bool AreCharsAccepltable(
	String^ text
)
F#
abstract AreCharsAccepltable : 
        text:string -> bool 
override AreCharsAccepltable : 
        text:string -> bool 
JScript
protected function AreCharsAccepltable(
	text : String
) : boolean

Parameters

text
Type: System..::..String
String to verify

Return Value

True if text consists only of characters valid as part of number. Takes current culture and current constrainst in account.

Remarks

Returns true even for string which consists for valid character but is invalid number (i.e. "4.-..5" in invariant culture)

See Also

Collapse/expand Version History

1.5.3