Actual mode bring used to view the image data of the pages.
public virtual DocumentViewerItemType ItemType { get; }
public:
virtual property DocumentViewerItemType^ ItemType
{
DocumentViewerItemType^ get()
}
The actual mode bring used to view the image data of the pages.
Refer to PreferredItemType for more information.
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