VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing Namespace / ResizeCanvasCommand Class / Height Property
Syntax Exceptions Requirements SeeAlso
In This Topic
    Height Property (ResizeCanvasCommand)
    In This Topic
    Gets or sets destination height.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(100)>
    <DescriptionAttribute("Destination height.
    Valid values are from 1 to 65535.")>
    Public Property Height As System.Int32
    
    
    [DefaultValue(100)]
    [Description("Destination height.
    Valid values are from 1 to 65535.")]
    public System.Int32 Height { get; set; }
    
    
    [DefaultValue(100)]
    [Description("Destination height.
    Valid values are from 1 to 65535.")]
    public: __property System.Int32 get_Height();
    public: __property void set_Height(
    System.Int32 value
    );
    [DefaultValue(100)]
    [Description("Destination height.
    Valid values are from 1 to 65535.")]
    public:
    property System.Int32 Height { System.Int32 get(); void set(System.Int32 value); }

    Property Value

    Valid values are from 1 to 65535. Default value is 100.
    Exceptions
    ExceptionDescription
    Thrown if new value is lower or equal to 0 or greater than 65535.
    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