PaintValueEventArgs Class

 

Provides data for the PaintValue method.

Namespace:   System.Drawing.Design
Assembly:  System.Drawing (in System.Drawing.dll)

System.Object
  System.EventArgs
    System.Drawing.Design.PaintValueEventArgs

[<PermissionSetAttribute(SecurityAction.InheritanceDemand, Name = "FullTrust")>]
[<PermissionSetAttribute(SecurityAction.LinkDemand, Name = "FullTrust")>]
type PaintValueEventArgs = 
    class
        inherit EventArgs
    end

NameDescription
System_CAPS_pubmethodPaintValueEventArgs(ITypeDescriptorContext, Object, Graphics, Rectangle)

Initializes a new instance of the PaintValueEventArgs class using the specified values.

NameDescription
System_CAPS_pubpropertyBounds

Gets the rectangle that indicates the area in which the painting should be done.

System_CAPS_pubpropertyContext

Gets the ITypeDescriptorContext interface to be used to gain additional information about the context this value appears in.

System_CAPS_pubpropertyGraphics

Gets the Graphics object with which painting should be done.

System_CAPS_pubpropertyValue

Gets the value to paint.

NameDescription
System_CAPS_pubmethodEquals(Object)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_protmethodFinalize()

Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

Creates a shallow copy of the current Object.(Inherited from Object.)

System_CAPS_pubmethodToString()

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:

No code example is currently available or this language may not be supported.

NamedPermissionSet

for full access to system resources. Demand values: LinkDemand, InheritanceDemand. Associated state:

.NET Framework
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.

Return to top
Show: