[]
Creates the image metafile from the barcode.
public Image CreateMetafile(object value)
Public Function CreateMetafile(value As Object) As Image
Type | Name | Description |
---|---|---|
object | value | The new value of the barcode |
Type | Description |
---|---|
Image |
Creates the image metafile from the barcode with the specified resolution (in DPI).
public Image CreateMetafile(int dpi, object value)
Public Function CreateMetafile(dpi As Integer, value As Object) As Image
Type | Name | Description |
---|---|---|
int | dpi | Resolution in DPI (dots-per-inch) |
object | value | The new value of the barcode |
Type | Description |
---|---|
Image |
Creates the image metafile from the barcode with the specified resolution (in DPI for X and Y).
public Image CreateMetafile(int dpiX, int dpiY, object value)
Public Function CreateMetafile(dpiX As Integer, dpiY As Integer, value As Object) As Image
Type | Name | Description |
---|---|---|
int | dpiX | X-axis resolution in DPI (dots-per-inch) |
int | dpiY | Y-axis resolution in DPI (dots-per-inch) |
object | value | The new value of the barcode |
Type | Description |
---|---|
Image |