Standard oder höher

Method: CreatePictureBySize

CreatePictureBySize (Width: Integer, Height: Integer): Bool

Codebeispiele

Visual Basic:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
' Create an image of the barcode in specific size and assigns this to the clipboard
    AxBarcode1.CreatePictureBySize(800, 800)
    Clipboard.SetImage(AxBarcode1.Picture)
End Sub