[]
Create an instance of Image.
public Image()
Public Sub New()
Create an instance of Image.
public Image(string path)
Public Sub New(path As String)
| Type | Name | Description |
|---|---|---|
| string | path |
Create an instance of Image.
public Image(string path, double width, double height)
Public Sub New(path As String, width As Double, height As Double)
| Type | Name | Description |
|---|---|---|
| string | path | |
| double | width | |
| double | height |
Create an instance of Image.
public Image(ImageSource value)
Public Sub New(value As ImageSource)
| Type | Name | Description |
|---|---|---|
| ImageSource | value |
Create an instance of Image.
public Image(ImageSource value, double width, double height)
Public Sub New(value As ImageSource, width As Double, height As Double)
| Type | Name | Description |
|---|---|---|
| ImageSource | value | |
| double | width | |
| double | height |