Returns the enumerator that iterates through the collection of document images including
or excluding the inline images. The enumerator includes images added to document but not
yet drawn on any canvas.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public IEnumerable<PdfImage> GetImages(
bool includeInlineImages
)
VB
Public Function GetImages (
includeInlineImages As Boolean
) As IEnumerable(Of PdfImage)
Parameters
- includeInlineImages
- Type: System.Boolean
The value indicating whether to include inline
images in the collection of document images.
Return Value
Type:
IEnumerable<
PdfImage>
The enumerator that can be used to iterate through the collection of
page images including or excluding the inline images. The enumerator includes images
added to document but not yet drawn on any canvas.
See Also