 | InspectorStringAttributeTryConvertStringToValue Method |
Tries to convert the specified text to a value of the correct type for this property.
Namespace: Slash.ECS.Inspector.AttributesAssembly: Slash.ECS (in Slash.ECS.dll) Version: 1.0.6018.40178
Syntaxpublic override bool TryConvertStringToValue(
string text,
out Object value
)
Public Overrides Function TryConvertStringToValue (
text As String,
<OutAttribute> ByRef value As Object
) As Boolean
public:
virtual bool TryConvertStringToValue(
String^ text,
[OutAttribute] Object^% value
) override
abstract TryConvertStringToValue :
text : string *
value : Object byref -> bool
override TryConvertStringToValue :
text : string *
value : Object byref -> bool
Parameters
- text
- Type: SystemString
Text to convert. - value
- Type: SystemObject
Value of the correct type for this property, if the conversion was successful.
Return Value
Type:
Boolean
True if the conversion was successful; otherwise, false.
See Also