BeginCapture

Definition

Usage

Set the current fingerprint device to begin to capture images, and method CancelCapture can be used to forbid the current device to capture images.

 

Ejemplo

C#

        /// <summary>
        /// Use after connect and Enroll
        /// </summary>
        private void BeginCapture()
        {
        // When the capture finished execute te event OnCapture
            axZKFPEngX1.BeginCapture();
        }

VB

        ''' <summary>
''' Use after connect and Enroll
''' </summary>
Private Sub BeginCapture()
        ' When the capture finished execute te event OnCapture
	axZKFPEngX1.BeginCapture()
End Sub
''' <summary>
''' Release the fingerprint device initialized by method InitEngine, and method InitEngine 
''' can be utilized to re-initialize fingerprint device. 
''' </summary>
Private Sub EndEngine()
	axZKFPEngX1.EndEngine()
End Sub