OwnerDrawPropertyBag Class (System.Windows.Forms)

Switch View :
ScriptFree
.NET Framework Class Library
OwnerDrawPropertyBag Class

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Contains values of properties that a component might need only occasionally.

Inheritance Hierarchy

System.Object
  System.MarshalByRefObject
    System.Windows.Forms.OwnerDrawPropertyBag

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Syntax

Visual Basic
<SerializableAttribute> _
Public Class OwnerDrawPropertyBag _
	Inherits MarshalByRefObject _
	Implements ISerializable
C#
[SerializableAttribute]
public class OwnerDrawPropertyBag : MarshalByRefObject, 
	ISerializable
Visual C++
[SerializableAttribute]
public ref class OwnerDrawPropertyBag : public MarshalByRefObject, 
	ISerializable
F#
[<SerializableAttribute>]
type OwnerDrawPropertyBag =  
    class
        inherit MarshalByRefObject
        interface ISerializable
    end

The OwnerDrawPropertyBag type exposes the following members.

Constructors

  Name Description
Protected method OwnerDrawPropertyBag Infrastructure. Initializes a new instance of the OwnerDrawPropertyBag class.
Top
Properties

  Name Description
Public property BackColor Infrastructure. Gets or sets the background color for the component.
Public property Font Infrastructure. Gets or sets the font of the text displayed by the component.
Public property ForeColor Infrastructure. Gets or sets the foreground color of the component.
Top
Methods

  Name Description
Public method Static member Copy Infrastructure. Copies an OwnerDrawPropertyBag.
Public method CreateObjRef Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.)
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetLifetimeService Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method InitializeLifetimeService Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Public method IsEmpty Infrastructure. Returns whether the OwnerDrawPropertyBag contains all default values.
Protected method MemberwiseClone() Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method MemberwiseClone(Boolean) Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
Explicit Interface Implementations

  Name Description
Explicit interface implemetation Private method ISerializable.GetObjectData Infrastructure. Populates the specified SerializationInfo with the data needed to serialize the target object.
Top
Remarks

The OwnerDrawPropertyBag class enables a class to appear to have properties it really does not have. The class can then use the properties when needed, and save on memory when the class does not use the properties.

The OwnerDrawPropertyBag is used internally to the .NET Framework, and its constructors are private. You cannot create an instance of the OwnerDrawPropertyBag.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also

Reference