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