/
OnReadHighResBitmap

OnReadHighResBitmap

Declaration

Delphi

procedure OnReadHighResBitmap(TypeOfPic: Integer; out HighResBitmap: OleVariant);

ActiveX

HRESULT OnReadHighResBitmap([in] long TypeOfPic, [out] VARIANT* HighResBitmap);


Description

This function should read the signature image from the device driver and return it to the API.

Samples

C# (OCX)
void axSignApi4_OnReadHighResBitmap(object sender, IStepOverSignatureAPIv4Events_OnReadHighResBitmapEvent e)
{    
	e.highResBitmap = SigDev.ReadHighResBitmap(e.typeOfPic);
}
VB6
Private Sub signapi4_OnReadHighResBitmap(ByVal TypeOfPic As Long, HighResBitmap As Variant)     
	HighResBitmap = sigdev.ReadHighResBitmap(TypeOfPic)
Delphi - OCX
procedure TForm1.SignApiReadHighResBitmap(Sender: TObject; TypeOfPic: Integer; out HighResBitmap: OleVariant); 
begin  
	HighResBitmap := StepOverSignatureDevice1.ReadHighResBitmap(TypeOfPic); 
end;
VB.net (OCX)
Private Sub signapi4_OnReadHighResBitmap(ByVal TypeOfPic As Long, ByVal HighResBitmap As Object)        
	HighResBitmap = mSignaturDevice.ReadHighResBitmap(TypeOfPic)
End Sub

 

Related content

ReadHighResBitmap
ReadHighResBitmap
More like this
SignatureDevice
SignatureDevice
More like this
ReadHighResBitmapBase64
ReadHighResBitmapBase64
More like this
4. Methods
4. Methods
More like this
OnGetDeviceCertificate
OnGetDeviceCertificate
More like this
OnGetAesKey
OnGetAesKey
More like this