Initializes a new instance of the
Picture class.
Syntax
'Declaration
Public Function New( _
ByVal As String, _
ByVal As Uri, _
ByVal As Double, _
ByVal As Double, _
ByVal As Double, _
ByVal As Double _
)
'Usage
Dim name As String
Dim source As Uri
Dim x As Double
Dim y As Double
Dim width As Double
Dim height As Double
Dim instance As New Picture(name, source, x, y, width, height)
public Picture(
string ,
Uri ,
double ,
double ,
double ,
double
)
Parameters
- name
- The picture name.
- source
- The uri source of the picture.
- x
- The x location of the picture.
- y
- The y location of the picture.
- width
- The picture width.
- height
- The picture height.
See Also