Gets the rectangle in which to paint.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Public ReadOnly Property ClipRectangle As Rectangle
public Rectangle ClipRectangle { get; }
public: property Rectangle ClipRectangle { Rectangle get (); }
member ClipRectangle : Rectangle
The following code example demonstrates the use of this member. In the example, an event handler reports on the occurrence of the Control.Paint event. This report helps you to learn when the event occurs and can assist you in debugging.
To run the example code, paste it into a project that contains an instance of a type that inherits from Control, such as a Button or ComboBox. Then name the instance Control1 and ensure that the event handler is associated with the Control.Paint event.
Private Sub Control1_Paint(sender as Object, e as PaintEventArgs) _ Handles Control1.Paint Dim messageBoxVB as New System.Text.StringBuilder() messageBoxVB.AppendFormat("{0} = {1}", "ClipRectangle", e.ClipRectangle) messageBoxVB.AppendLine() messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics) messageBoxVB.AppendLine() MessageBox.Show(messageBoxVB.ToString(),"Paint Event") End Sub
private void Control1_Paint(Object sender, PaintEventArgs e) { System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder(); messageBoxCS.AppendFormat("{0} = {1}", "ClipRectangle", e.ClipRectangle ); messageBoxCS.AppendLine(); messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics ); messageBoxCS.AppendLine(); MessageBox.Show(messageBoxCS.ToString(), "Paint Event" ); }
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Windows 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.