ImageGear22.Processing.Advanced Assembly > ImageGear.Processing.ImageClean Namespace > ImGearICVerifier Class : CanApplyAutoCrop Method |
'Declaration Public Function CanApplyAutoCrop( _ ByVal page As ImGearPage _ ) As Boolean
'Usage Dim instance As ImGearICVerifier Dim page As ImGearPage Dim value As Boolean value = instance.CanApplyAutoCrop(page)
public bool CanApplyAutoCrop( ImGearPage page )
public: bool CanApplyAutoCrop( ImGearPage* page )
public: bool CanApplyAutoCrop( ImGearPage^ page )
True | ImGearIC.AutoCrop method can be applied to the specified page. |
False | ImGearIC.AutoCrop method cannot be applied to the specified page. |
if (ImGearIC.Verifier.CanApplyAutoCrop(igPage)) { // The IC method can be applied to igPage. // Apply it here. }
If ImGearIC.Verifier.CanApplyAutoCrop(igPage) Then ' The IC method can be applied to igPage. ' Apply it here. End If