Should return whether the object has been saved to the database. Generally, this is implemented using a private variable that stores the object's saved state. If a new object is saved or an existing object is loaded then this property is automatically set to true by the library.

Namespace: DatabaseObjects
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
bool IsSaved { get; set; }
Visual Basic
Property IsSaved As Boolean
	Get
	Set
Visual C++
property bool IsSaved {
	bool get ();
	void set (bool value);
}

See Also