WindowTitleSettingsBuilder

Methods

Enabled(System.Boolean)

Enables or disables the title.

Parameters

enable - System.Boolean

Example

Razor
 
             @( Html.Kendo().Window()
                        .Name("Window")
                        .Title(x => x.Enabled(false))
            )
             

Encoded(System.Boolean)

Enables or disables the encoding of the title.

Parameters

encoded - System.Boolean

Example

Razor
 "))
            )
             

Text(System.String)

Sets the text of the title

Parameters

text - System.String

Example

Razor
 
             @( Html.Kendo().Window()
                        .Name("Window")
                        .Title(x => x.Text("test"))
            )