browser class : LoadImages(bool) setter
Description
Sets a value that indicates whether to load the image.
Syntax
instance.LoadImages = value;
Assigned value
Class | Description |
bool | Whether to load the image. |
Return value
None.
Sample code
1: | browser b; // Main-browser |
2: | b.LoadImages = false; // It prevents image loading. |
Notes
If set to true, images will be loaded.
If set to false, images will not be loaded.
The default value is true.
Indicates whether to load images on top-level document. It has nothing to do with the images in the child frames.
Links for reference
None.