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