Class DialogPropertiesBase
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript
Assembly: Syncfusion.EJ.dll
Syntax
public class DialogPropertiesBase : PropertiesBase
Constructors
DialogPropertiesBase()
Initializes a new instance of the DialogPropertiesBuilder class.
Declaration
public DialogPropertiesBase()
Properties
EnableAnimation
Gets or sets a value indicating whether [enable animation].
Declaration
[JsonProperty("enableAnimation")]
public bool EnableAnimation { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnableAutoOpen
Specifies whether to open the dialog on initial loading.
Declaration
[JsonProperty("enableAutoOpen")]
public bool EnableAutoOpen { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnableModal
Specifies whether to enable modal dialog.
Declaration
[JsonProperty("enableModal")]
public bool EnableModal { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnablePersistence
Specifies to maintain the current model value to browser cookies for state maintenance. While refresh the page, the model value will get apply to the control from browser cookies.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Title
Specifies the title text.
Declaration
[JsonProperty("title")]
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String | The title. |