Gets or sets a value indicating whether asynchronous image loading is allowed.

Namespace: FirstFloor.Documents.IO
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

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

Field Value

true if asynchronous image loading is allowed; otherwise, false.

Remarks

This only makes sense if the package reader supports asynchronous image loading after a page is rendered. The WebPackageReader does support asynchronous image loading.

See Also