ILabel
Wisej.Web.ILabel
public interface ILabelPublic Interface ILabel
// Old code
if (control is TextBoxBase)
((TextBoxBase)control).LabelText = "Name";
else if (control is ComboBox)
((ComboBox)control).LabelText = "Name";
// etc...
// New code
if (control is ILabel)
((ILabel)control).LabelText = "Name";
Properties
Label
LabelText
Implemented By
Name
Description
Last updated
Was this helpful?

