65.9K
CodeProject is changing. Read more.
Home

Hiding inherited properties

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.67/5 (2 votes)

Sep 23, 2011

CPOL
viewsIcon

5298

[Browsable(fal...

[Browsable(false), Bindable(false),
    DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden),
    EditorBrowsable(EditorBrowsableState.Never)]
public override string Text
{
    get { return base.Text; }
    set { base.Text = value; }
}
Here, if you specify DesignerSerializationVisibility.Hidden, the code generator does not produce code for the object.