Skip to main content
All docs
V25.1
  • DiagramCustomShapeBuilder.ToolboxTemplate(TemplateName) Method

    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

    public DiagramCustomShapeBuilder ToolboxTemplate(
        TemplateName name
    )

    Parameters

    Name Type Description
    name TemplateName

    A template name.

    Returns

    Type Description
    DiagramCustomShapeBuilder

    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