public Label SetAppearance(LabelAppearanceType appearance) { Appearance = appearance ?? LabelAppearanceType.Default; return this; }
public Label(string text, LabelAppearanceType appearance = null, string clientId = null) : base("_Label", clientId) { SetText(text).SetAppearance(appearance); }