PaintValueEventArgs Class
Provides data for the PaintValue method.
Assembly: System.Drawing (in System.Drawing.dll)
| Name | Description | |
|---|---|---|
![]() | PaintValueEventArgs(ITypeDescriptorContext^, Object^, Graphics^, Rectangle) | Initializes a new instance of the PaintValueEventArgs class using the specified values. |
| Name | Description | |
|---|---|---|
![]() | Bounds | Gets the rectangle that indicates the area in which the painting should be done. |
![]() | Context | Gets the ITypeDescriptorContext interface to be used to gain additional information about the context this value appears in. |
![]() | Graphics | Gets the Graphics object with which painting should be done. |
![]() | Value | Gets the value to paint. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
PaintValueEventArgs provides all the information needed for a UITypeEditor to paint within an area based on the value of the specified object, including the Rectangle in which the drawing should be done and the Graphics object with which the drawing should be done.
The following code example method returns a PaintValueEventArgs that provides the data needed to paint a representation of the value of an object within a given area:
PaintValueEventArgs^ CreatePaintValueEventArgs( System::ComponentModel::ITypeDescriptorContext^ context, Object^ value, Graphics^ graphics, Rectangle bounds ) { PaintValueEventArgs^ e = gcnew PaintValueEventArgs( context, value, graphics, bounds ); // The context of the paint value event e.Context // The Object representing the value to paint e.Value // The graphics to use to paint e.Graphics // The rectangle in which to paint e.Bounds return e; }
for full access to system resources. Demand values: LinkDemand, InheritanceDemand. Associated state:
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


