 | InspectorIntAttributeTryConvertValueToString Method |
Tries to convert the specified value to a string that can be converted back 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 TryConvertValueToString(
Object value,
out string text
)
Public Overrides Function TryConvertValueToString (
value As Object,
<OutAttribute> ByRef text As String
) As Boolean
public:
virtual bool TryConvertValueToString(
Object^ value,
[OutAttribute] String^% text
) override
abstract TryConvertValueToString :
value : Object *
text : string byref -> bool
override TryConvertValueToString :
value : Object *
text : string byref -> bool
Parameters
- value
- Type: SystemObject
Value to convert. - text
- Type: SystemString
String that can be converted back to a value of the correct type for this property.
Return Value
Type:
Boolean
True if the conversion was successful; otherwise, false.
See Also