ImgElement.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 an ImgElement object.
Remarks
The ReadyState property is especially useful with long documents that contain many pictures or markup tags that take time to load. Generally, the ReadyState property returns the String "complete." However, with long documents, you may get the following String values:
Value | Description |
---|---|
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