DiagramCustomShapeBuilder.ToolboxTemplate(TemplateName) Method
In This Article
Specifies a custom template for the shape in the toolbox. Mirrors the client-side toolboxTemplate option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DiagramCustomShapeBuilder ToolboxTemplate(
TemplateName name
)
#Parameters
Name | Type | Description |
---|---|---|
name | Template |
A template name. |
#Returns
Type | Description |
---|---|
Diagram |
A reference to this instance after the method is called. |
#Remarks
This method applies an external template to a custom shape. Refer to External Templates for more information and code examples.
@(Html.DevExtreme().Diagram()
.CustomShapes(customShapes => {
customShapes.Add().ToolboxTemplate(new TemplateName("myDiagramCustomShape_toolboxTemplate"));
})
)
@using(Html.DevExtreme().NamedTemplate("myDiagramCustomShape_toolboxTemplate")) {
<div>
Template content
</div>
}
See Also