ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Processing Namespace / ImGearRasterProcessingVerifier Class / CanApplyCrypt Method
Raster page object to verify.
Password to Encrypt/Decrypt the image with.




In This Topic
    CanApplyCrypt Method
    In This Topic
    Returns true if ImGearRasterProcessing.Encrypt and ImGearRasterProcessing.Decrypt methods can be applied to the specified page, false otherwise.
    Syntax
    'Declaration
     
    Public Function CanApplyCrypt( _
       ByVal page As ImGearRasterPage, _
       ByVal password As String _
    ) As Boolean
    'Usage
     
    Dim instance As ImGearRasterProcessingVerifier
    Dim page As ImGearRasterPage
    Dim password As String
    Dim value As Boolean
     
    value = instance.CanApplyCrypt(page, password)
    public bool CanApplyCrypt( 
       ImGearRasterPage page,
       string password
    )
    public: bool CanApplyCrypt( 
       ImGearRasterPage* page,
       string* password
    ) 
    public:
    bool CanApplyCrypt( 
       ImGearRasterPage^ page,
       String^ password
    ) 

    Parameters

    page
    Raster page object to verify.
    password
    Password to Encrypt/Decrypt the image with.

    Return Value

    Boolean value.
    See Also