FileImageTag
The FileImageTag interface defines a structure that contains extra information about an image that is loaded from a file. It inherits from the ImageTag interface with two added attributes: filePath and pageNumber.
interface FileImageTag extends ImageTag {
filePath: string;
pageNumber: number;
}
| Properties | Type |
|---|---|
| filePath | string |
| pageNumber | number |
filePath
Gets the file path of the image tag.
filePath: string;
pageNumber
Gets the page number of the image tag.
pageNumber: number;