Interface IHTMLAttribute
Interface that publishes the logic which specify allowed actions with any HTML element.
Namespace: Syncfusion.Windows.Forms.HTMLUI
Assembly: Syncfusion.HTMLUI.Windows.dll
Syntax
public interface IHTMLAttribute
Properties
IsRuntimeAttribute
Gets a value indicating whether the property runtime must not be serialized to text.
Declaration
bool IsRuntimeAttribute { get; }
Property Value
Type |
---|
System.Boolean |
Name
Gets the name of the attribute.
Declaration
string Name { get; }
Property Value
Type |
---|
System.String |
Parent
Gets the parent of the attribute.
Declaration
IHTMLElement Parent { get; }
Property Value
Type |
---|
IHTMLElement |
Value
Gets or sets the current value of the attribute as variant. NULL if attribute value was never set before.
Declaration
string Value { get; set; }
Property Value
Type |
---|
System.String |
Events
ValueChanged
Event raised after the attribute value changes. To event handlers send new and old value of attribute.
Declaration
event ValueChangedEventHandler ValueChanged
Event Type
Type |
---|
ValueChangedEventHandler |