//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.ComponentModel { using System; /// /// Specifies the visibility a property has to the design time /// serializer. /// /// [System.Runtime.InteropServices.ComVisible(true)] public enum DesignerSerializationVisibility { /// /// The code generator will not produce code for the object. /// Hidden, /// /// The code generator will produce code for the object. /// Visible, /// /// The code generator will produce code for the contents of the object, rather than for the object itself. /// Content } }