Interface IHTMLAttribute
Interface that publishes the logic which specify allowed actions with any
HTML element.
Assembly: Syncfusion.HTMLUI.Windows.dll
public interface IHTMLAttribute
Properties
Gets a value indicating whether the property runtime must not be serialized to text.
Declaration
bool IsRuntimeAttribute { get; }
Property Value
Gets the name of the attribute.
Declaration
Property Value
Gets the parent of the attribute.
Declaration
IHTMLElement Parent { get; }
Property 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
Methods
Declaration
void add_ValueChanged(ValueChangedEventHandler value)
Parameters
Declaration
void remove_ValueChanged(ValueChangedEventHandler value)
Parameters
Events
Event raised after the attribute value changes. To event handlers
send new and old value of attribute.
Declaration
event ValueChangedEventHandler ValueChanged
Event Type