Gets or sets a value indicating whether a negative number offset should be applied when formatting the property value.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public bool ApplyOffset { get; private set; }
Visual Basic
Public Property ApplyOffset As Boolean
	Get
	Private Set
Visual C++
public:
property bool ApplyOffset {
	bool get ();
	private: void set (bool value);
}

Field Value

true if the value should be offset; otherwise, false.

Remarks

The offset value will be automatically adjusted to exactly accomodate the number of whole digits requested.

For more information on negative number offsets see the SimpleDB developer guide: http://docs.amazonwebservices.com/AmazonSimpleDB/2007-11-07/DeveloperGuide/NegativeNumbersOffsets.html

See Also