VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Codecs.Encoders Namespace / TiffEncoderSettings Class / TileSize Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    TileSize Property (TiffEncoderSettings)
    In This Topic
    Gets or sets a tile size.
    Syntax
    'Declaration
    
    <DescriptionAttribute("A tile size.
    Tile width and height must be multiple 16.")>
    Public Property TileSize As System.Drawing.Size
    
    
    [Description("A tile size.
    Tile width and height must be multiple 16.")]
    public System.Drawing.Size TileSize { get; set; }
    
    
    [Description("A tile size.
    Tile width and height must be multiple 16.")]
    public: __property System.Drawing.Size* get_TileSize();
    public: __property void set_TileSize(
    System.Drawing.Size* value
    );
    [Description("A tile size.
    Tile width and height must be multiple 16.")]
    public:
    property System.Drawing.Size^ TileSize { System.Drawing.Size^ get(); void set(System.Drawing.Size^ value); }

    Property Value

    Default value is 0x0. Value 0x0 indicates that the tile size will be calculated automatically.
    Exceptions
    ExceptionDescription
    Thrown if tile width is 0 and tile height is not 0 OR tile height is 0 and tile width is not 0 OR tile width is not multiple 16 OR tile height is not multiple 16.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also