Initializes a new instance of the class using the specified text, navigation URL and image URLs.

Namespace:  C1.Web.Command
Assembly:  C1.Web.Command.2 (in C1.Web.Command.2.dll)

Syntax

C#
public C1WebLinkItem(
	string text,
	string navigateUrl,
	string imageUrl,
	string mouseOverImageUrl,
	string selectedImageUrl,
	string mouseOverSelectedImageUrl,
	string disabledImageUrl
)
Visual Basic (Declaration)
Public Sub New ( _
	text As String, _
	navigateUrl As String, _
	imageUrl As String, _
	mouseOverImageUrl As String, _
	selectedImageUrl As String, _
	mouseOverSelectedImageUrl As String, _
	disabledImageUrl As String _
)

Parameters

text
Type: System..::.String
The text that is displayed for the item.
navigateUrl
Type: System..::.String
The URL to link to when the item is clicked.
imageUrl
Type: System..::.String
The URL to an image that is displayed next to the item in normal state.
mouseOverImageUrl
Type: System..::.String
The URL to an image that is displayed next to the item when the mouse hovers over it.
selectedImageUrl
Type: System..::.String
The URL to an image that is displayed next to the item in selected state.
mouseOverSelectedImageUrl
Type: System..::.String
The URL to an image that is displayed next to the selected item when the mouse hovers over it.
disabledImageUrl
Type: System..::.String
The URL to an image that is displayed next to the item in disabled state.

See Also