Determines how to view the image data of the pages.
public enum DocumentViewerItemType
public:
enum class DocumentViewerItemType sealed
0 |
Image |
(0) View using the raster image data of a page. Always supported
|
1 |
Svg |
(1) View using the SVG data of a page if supported
|
DocumentViewerItemType is used as the type of DocumentViewerView.PreferredItemType and DocumentViewerView.ItemType properties to control the preferred and actual mode used when viewing the image of a page.
using Leadtools;
using Leadtools.Controls;
using Leadtools.Document;
using Leadtools.Document.Viewer;
using Leadtools.Codecs;
using Leadtools.Caching;
using Leadtools.Annotations.Engine;
using Leadtools.Ocr;
// Switch between SVG and Raster image viewer
var view = _documentViewer.View;
if (view.PreferredItemType == DocumentViewerItemType.Svg)
view.PreferredItemType = DocumentViewerItemType.Image;
else
view.PreferredItemType = DocumentViewerItemType.Svg;
// When we ste the preferred, ItemType gets updated accordingly with
// the actual value supported by the document format
// Formats such as PDF and DOCX support both
// Formats such as TIF and JPEG support only raster
var message = string.Format("We prefer {0} and it is currently {1} - document MIME type is {2}",
view.PreferredItemType,
view.ItemType,
_documentViewer.Document.MimeType);
Console.WriteLine(message);
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document