ITiffOptions

ITiffOptions interface

Provides options that control how a presentation is saved in TIFF format.

public interface ITiffOptions : ISaveOptions

Properties

NameDescription
AsISaveOptions { get; }Returns ISaveOptions interface. Read-only ISaveOptions.
BwConversionMode { get; set; }Specifies the algorithm for converting a color image into a black and white image. This option will applied only if CompressionType is set to CCITT4 or CCITT3 Read/write BlackWhiteConversionMode. Default is Default.
CompressionType { get; set; }Specifies the compression type. Read/write TiffCompressionTypes.
DpiX { get; set; }Specifies the horizontal resolution in dots per inch. Read/write UInt32.
DpiY { get; set; }Specifies the vertical resolution in dots per inch. Read/write UInt32.
ImageSize { get; set; }Specifies size of a generated TIFF image. Default value is 0x0, what means that generated image sizes will be calculated based on presentation slide size value. Read/write Size.
InkOptions { get; }Provides options that control the look of Ink objects in exported document. Read-only IInkOptions
PixelFormat { get; set; }Specifies the pixel format for the generated images. Read/write ImagePixelFormat.
ShowHiddenSlides { get; set; }Specifies whether the generated document should include hidden slides or not. Default is false.
SlidesLayoutOptions { get; set; }Gets or sets the mode in which slides are placed on the page when exporting a presentation ISlidesLayoutOptions.

See Also