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