CreatePictureBySize (Width: Integer, Height: Integer): Bool
方法:
属性:
活动:
允许处理自定义大小的图片属性。 条形码图片的大小由参数 width 和 height 指定。 如果成功,则返回 TRUE。
属性:
活动:
允许处理自定义大小的图片属性。 条形码图片的大小由参数 width 和 height 指定。 如果成功,则返回 TRUE。
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