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