Class ButtonPropertiesBase
Holds the all the properties of Button control
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 ButtonPropertiesBase : PropertiesBase
Constructors
ButtonPropertiesBase()
Initializes a new instance of the ButtonPropertiesBuilder class.
Declaration
public ButtonPropertiesBase()
Properties
ContentType
Specifies the Button contentType.
Declaration
[JsonProperty("contentType")]
[JsonConverter(typeof(StringEnumConverter))]
public ContentType ContentType { get; set; }
Property Value
Type | Description |
---|---|
ContentType | The type of the content. |
Enabled
Specifies the Button enabled.
Declaration
[JsonProperty("enabled")]
public bool Enabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
EnablePersistence
Current model value to browser cookies for state maintains. While refresh the Header control page retains the model value apply from browser cookies.
Declaration
[JsonProperty("enablePersistence")]
public bool EnablePersistence { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ImagePosition
Specifies the Button imagePosition.
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("imagePosition")]
public ImagePosition ImagePosition { get; set; }
Property Value
Type | Description |
---|---|
ImagePosition | The image position. |
Text
Specifies the Button text.
Declaration
[JsonProperty("text")]
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The text. |