ImageGear v26.3 - Updated November 9, 2022
ImageGear.Core Assembly / ImageGear.Processing Namespace / ImGearProcessingVerifier Class / CanApplyResize Method
Page to verify.
Page width.
Page height.
Interpolation options.




In This Topic
CanApplyResize Method
In This Topic
Verifies if ImGearProcessing.Resize method can be applied to the Page.
Syntax
'Declaration
 
Public Function CanApplyResize( _
   ByVal page As ImGearPage, _
   ByVal width As Integer, _
   ByVal height As Integer, _
   ByVal options As ImGearInterpolationOptions _
) As Boolean
 
'Usage
 
Dim instance As ImGearProcessingVerifier
Dim page As ImGearPage
Dim width As Integer
Dim height As Integer
Dim options As ImGearInterpolationOptions
Dim value As Boolean
 
value = instance.CanApplyResize(page, width, height, options)

Parameters

page
Page to verify.
width
Page width.
height
Page height.
options
Interpolation options.

Return Value

Boolean value.
Remarks
Returns true if ImGearProcessing.Resize method can be applied to the specified page, with the specified dimensions and interpolation, false otherwise.
See Also