Skip to main content
All docs
V19.1

GanttSettings.HtmlRowPrepared Property

Enables you to change the individual rows’ settings.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

Declaration

public TreeListHtmlRowEventHandler HtmlRowPrepared { get; set; }

Property Value

Type Description
TreeListHtmlRowEventHandler

A delegate method allowing you to implement custom processing.

Remarks

settings.HtmlRowPrepared = (s, e) =>
{
    var gantt = (MVCxGantt)s;
    ...
    e.Row.BorderStyle = System.Web.UI.WebControls.BorderStyle.Outset;
    e.Row.BorderWidth = 3;
    e.Row.BorderColor = Color.Red;
};
See Also