QuickObjects.ObjectBase Send comments on this topic.
IsLoaded Property
See Also 
Akal.QuickObjects.ObjectBase Namespace > BaseBusinessObject Class : IsLoaded Property

IsLoaded

Holds a boolean value. This value indicates weather the record values have been loaded into the object's properties.


	if (myBusinessObject.IsLoaded)
	{
		//codeBlock
	}
	

As in the above example, IsLoaded property can be used to determine weather the record values have been loaded or not. Also it can be combined with the IsDirty property to see if the values have been changed since they were last loaded.

Syntax

C# 
public bool IsLoaded {get; set;}

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also