Class DialogOptionsBase
- Namespace
- Radzen
- Assembly
- Radzen.Blazor.dll
Base Class for dialog options
public abstract class DialogOptionsBase
- Inheritance
-
DialogOptionsBase
- Derived
- Inherited Members
Constructors
DialogOptionsBase()
protected DialogOptionsBase()
Properties
CloseDialogOnOverlayClick
Gets or sets a value indicating whether the dialog should be closed by clicking the overlay.
public bool CloseDialogOnOverlayClick { get; set; }
Property Value
- bool
true
if closeable; otherwise,false
.
CloseTabIndex
Gets or sets a value the dialog escape tabindex. Set to 0
by default.
public int CloseTabIndex { get; set; }
Property Value
ContentCssClass
Gets or sets the CSS classes added to the dialog's content element.
public string ContentCssClass { get; set; }
Property Value
CssClass
Gets or sets dialog box custom class
public string CssClass { get; set; }
Property Value
Height
Gets or sets the height of the dialog.
public string Height { get; set; }
Property Value
- string
The height.
ShowClose
Gets or sets a value indicating whether to show the close button. Set to true
by default.
public bool ShowClose { get; set; }
Property Value
- bool
true
if the close button is shown; otherwise,false
.
ShowTitle
Gets or sets a value indicating whether to show the title bar. Set to true
by default.
public bool ShowTitle { get; set; }
Property Value
- bool
true
if title bar is shown; otherwise,false
.
Style
Gets or sets the CSS style of the dialog
public string Style { get; set; }
Property Value
- string
The style.
Width
Gets or sets the width of the dialog.
public string Width { get; set; }
Property Value
- string
The width.
WrapperCssClass
Gets or sets the CSS classes added to the dialog's wrapper element.
public string WrapperCssClass { get; set; }