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