Skip to main content
A newer version of this page is available. .

ToolbarListEditItemCollection.Add(String, Object, String) Method

Creates a new item with the specified settings and adds it to the collection.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v19.2.dll

Declaration

public ToolbarListEditItem Add(
    string text,
    object value,
    string imageUrl
)

Parameters

Name Type Description
text String

A String value that specifies the item’s text. Initializes the ListEditItem.Text property.

value Object

An object that represents the item’s value. This value is assigned to the ListEditItem.Value property.

imageUrl String

A String value specifying the path to the image displayed by the item. This value is assigned to the ListEditItem.ImageUrl property.

Returns

Type Description
ToolbarListEditItem

A ToolbarListEditItem object representing the newly created item.

Remarks

Use the Add method to add a new item with the specified settings to the end of the ToolbarListEditItemCollection object.

See Also