Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
UseTileSize Property
See Also 
Leadtools.Codecs Namespace > CodecsTiffOptions.CodecsTiffSaveOptions Class : UseTileSize Property



Enables and disables using TileWidth and TileHeight when saving TIFF images.

Syntax

Visual Basic (Declaration) 
Public Property UseTileSize As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CodecsTiffOptions.CodecsTiffSaveOptions
Dim value As Boolean
 
instance.UseTileSize = value
 
value = instance.UseTileSize
C# 
public bool UseTileSize {get; set;}
C++/CLI 
public:
property bool UseTileSize {
   bool get();
   void set (bool value);
}

Return Value

true to use TileWidth and TileHeight when saving TIFF images; otherwise, false.

Example

For an example, refer to CodecsTiffOptions.

Remarks

To use tile size when saving TIFF images, first set UseTileSize to true, then set the tile size in TileWidth and TileHeight prior of calling RasterCodecs.Save.

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also