HtmlTemplateCollection.AddTemplate(String, String) Method
In This Article
Initializes a new HTML template and places it into this collection.
Namespace: DevExpress.Utils.Html
Assembly: DevExpress.Utils.v24.2.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
#Declaration
public virtual HtmlTemplate AddTemplate(
string template = null,
string styles = null
)
#Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
template | String | null | A string that stores the entire HTML markup of a newly created template. |
styles | String | null | A string that stores the stylesheet (CSS styles) for the newly created template. |
#Returns
Type | Description |
---|---|
Html |
The new template created with the given markup and stylesheet strings. |
See Also