DashboardItem Constructor (String, String, Uri, Bitmap)
Applies to v2.
Initializes a new instance of the DashboardItem class.
Namespace: Microsoft.WebMatrix.Extensibility
Assembly: Microsoft.WebMatrix.Extensibility (in Microsoft.WebMatrix.Extensibility.dll)
Syntax
'Declaration
Public Sub New ( _
title As String, _
description As String, _
uri As Uri, _
image As Bitmap _
)
'Usage
Dim title As String
Dim description As String
Dim uri As Uri
Dim image As Bitmap
Dim instance As New DashboardItem(title, description, _
uri, image)
public DashboardItem(
string title,
string description,
Uri uri,
Bitmap image
)
public:
DashboardItem(
String^ title,
String^ description,
Uri^ uri,
Bitmap^ image
)
new :
title:string *
description:string *
uri:Uri *
image:Bitmap -> DashboardItem
public function DashboardItem(
title : String,
description : String,
uri : Uri,
image : Bitmap
)
Parameters
title
Type: System.StringThe title of the item.
description
Type: System.StringThe description for the item.
uri
Type: System.UriThe URI for the item.
image
Type: System.Drawing.BitmapThe image for the item.