Share via


DesignerDocument.ReadyState Property

SharePoint Designer Developer Reference

Returns a String that represents the state of the specified object.

Syntax

expression.ReadyState

expression   Required. A variable that represents a DesignerDocument object.

Remarks

The ReadyState property is especially useful with long documents that contain many of pictures or markup tags that take significant time to load. Generally, the ReadyState property returns the String "complete." However, with long documents, you may receive the following String values:

complete Object is completely initialized.
interactive User can interact with the object even though it is not fully loaded.
loaded Object has finished loading its data.
loading Object is loading its data.
uninitialized Object is not initialized with data.

See Also