NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

NumberFormatInfo.PositiveSign

Retrieves and assigns the character used to indicate positive values.

[Visual Basic]
Public Property PositiveSign As String
[C#]
public string PositiveSign {get; set;}
[C++]
public: __property String* get_PositiveSign();
public: __property void set_PositiveSign(String*);
[JScript]
public function get PositiveSign() : String;
public function set PositiveSign(String);

Property Value

Read/write. The character used to indicate positive values. The default value is '+'.

Exceptions

Exception Type Condition
InvalidOperationException if this NumberFormatInfo object is read-only and an attempt is made to assign a value.

Remarks

Assignment is not allowed if this NumberFormatInfo object is read-only.

See Also

NumberFormatInfo Class | NumberFormatInfo Members | System.Globalization Namespace