public HtmlAttribute(string property, string value = null, HtmlAttributeType type = HtmlAttributeType.Equality, HtmlAttributeGroup group = HtmlAttributeGroup.Normal) { SetProperty(property); SetValue(value); SetAttributeType(type); SetAttributeGroup(group); }
public HtmlAttribute SetAttributeGroup(HtmlAttributeGroup group) { Group = group; return(this); }