PaintValueEventArgs-Klasse
Stellt Daten für die PaintValue-Methode bereit.
Namespace: System.Drawing.Design
Assembly: System.Drawing (in system.drawing.dll)
Syntax
'Declaration
Public Class PaintValueEventArgs
Inherits EventArgs
'Usage
Dim instance As PaintValueEventArgs
public class PaintValueEventArgs : EventArgs
public ref class PaintValueEventArgs : public EventArgs
public class PaintValueEventArgs extends EventArgs
public class PaintValueEventArgs extends EventArgs
Hinweise
Die PaintValueEventArgs-Klasse stellt alle Informationen bereit, die eine UITypeEditor-Klasse benötigt, um abhängig vom Wert des angegebenen Objekts in einem Bereich zu zeichnen, einschließlich des Rectangle-Bereichs, in dem gezeichnet werden soll, sowie des Graphics-Objekts, mit dem gezeichnet werden soll.
Beispiel
Die Methode im folgenden Codebeispiel gibt eine PaintValueEventArgs-Klasse zurück. Diese stellt die Daten bereit, die erforderlich sind, um den Wert eines Objekts in einem angegebenen Bereich zeichnerisch darzustellen:
Public Function CreatePaintValueEventArgs(ByVal context As System.ComponentModel.ITypeDescriptorContext, ByVal value As Object, ByVal graphics As Graphics, ByVal bounds As Rectangle) As PaintValueEventArgs
Dim e As New 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
End Function
public PaintValueEventArgs CreatePaintValueEventArgs(System.ComponentModel.ITypeDescriptorContext context, object value, Graphics graphics, Rectangle bounds)
{
PaintValueEventArgs e = new 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;
}
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;
}
public PaintValueEventArgs CreatePaintValueEventArgs(System.ComponentModel.
ITypeDescriptorContext context, Object value, Graphics graphics,
Rectangle bounds)
{
PaintValueEventArgs e = new 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;
} //CreatePaintValueEventArgs
.NET Framework-Sicherheit
- NamedPermissionSet für Vollzugriff auf Systemressourcen. Anforderungswerte: LinkDemand, InheritanceDemand. Zugeordneter Zustand: FullTrust
Vererbungshierarchie
System.Object
System.EventArgs
System.Drawing.Design.PaintValueEventArgs
Threadsicherheit
Alle öffentlichen statischen (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0