[This is preliminary documentation and is subject to change.]
Gets the string value of the item.
Namespace:
Tools.XmlT.XPathTAssembly: Tools (in Tools.dll) Version: 1.5.2.0
Syntax
| C# |
|---|
public override string Value { get; } |
| Visual Basic (Declaration) |
|---|
Public Overrides ReadOnly Property Value As String |
| Visual C++ |
|---|
public: virtual property String^ Value { String^ get () override; } |
| J# |
|---|
/** @property */ public String get_Value() |
| JScript |
|---|
public override function get Value () : String |
Return Value
The string value of the item.
Remarks
If CurrentStep is XPathObjectNavigator..::.SpecialStep then value of peudo-property depending on Type is returned (using SupportedTypeValue(Object)) otherwise if context object is IFormattable its value is obtained via ToString(String, IFormatProvider) with String as format parameter and InvariantCulture as culture if it is not IFormattable value is obtained via ToString()()(). But vhen IsSupportedType(Type) returns true for type of context object SupportedTypeValue(Object) is used instead.