SystemPens.AppWorkspace プロパティ

定義

アプリケーション ワークスペースの色である Pen を取得します。

public:
 static property System::Drawing::Pen ^ AppWorkspace { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen AppWorkspace { get; }
static member AppWorkspace : System.Drawing.Pen
Public Shared ReadOnly Property AppWorkspace As Pen

プロパティ値

Pen

アプリケーション作業領域の色を表す Pen

次のコード例では、 プロパティの使用方法を AppWorkspace 示します。 この例を実行するには、Windows フォームに貼り付けます。 フォームのPaintイベントを処理し、イベント処理メソッドから メソッドをPaint呼び出しDrawWithActiveAppWorkspacePen、 を としてPaintEventArgs渡しますe

private void DrawWithActiveCaptionPen(PaintEventArgs e)
{
    Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
    e.Graphics.DrawRectangle(SystemPens.ActiveCaption, rectangle1);
}
Private Sub DrawWithActiveCaptionPen(ByVal e As PaintEventArgs) 
    Dim rectangle1 As New Rectangle(10, 10, 100, 100)
    e.Graphics.DrawRectangle(SystemPens.ActiveCaption, rectangle1)

End Sub

注釈

アプリケーション ワークスペースは、ドキュメントが占有していない複数のドキュメント ビュー内の領域です。

適用対象