Skip to main content
All docs
V25.1
  • HtmlContentControl.HtmlTemplate Property

    Gets the control’s HTML-CSS template.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    [DXCategory("Layout")]
    public HtmlTemplate HtmlTemplate { get; }

    Property Value

    Type Description
    HtmlTemplate

    The control’s HTML-CSS template.

    Remarks

    At design time, click the control’s smart tag and select the Edit Template command to open the HTML-CSS editor.

    HtmlContentControl EditTemplate Action

    Use the HtmlTemplate property to specify HTML markup and CSS styles in code. The HtmlTemplate object exposes two nested properties for this purpose:

    • HtmlTemplate.Template — Specifies HTML code that defines the layout of UI elements.
    • HtmlTemplate.Styles — Specifies CSS styles applied to the UI elements.

    See the following topic for more information: HtmlContentControl.

    See Also