CopyToClipboardBySize (Width: Integer, Height: Integer): Bool
方法:
属性:
活动:
将元图形格式的条形码复制到剪贴板。 条形码的大小由参数 width 和 height 指定。 如果成功,则返回 TRUE。
属性:
活动:
将元图形格式的条形码复制到剪贴板。 条形码的大小由参数 width 和 height 指定。 如果成功,则返回 TRUE。
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
' Assigns a sized image of the barcode to the clipboard
AxBarcode1.CopyToClipboardBySize(600, 400)
End Sub