WorkflowView.ViewPortRectangle プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ViewPortRectangle の、現在の WorkflowView を取得します。
public:
property System::Drawing::Rectangle ViewPortRectangle { System::Drawing::Rectangle get(); };
public System.Drawing.Rectangle ViewPortRectangle { get; }
member this.ViewPortRectangle : System.Drawing.Rectangle
Public ReadOnly Property ViewPortRectangle As Rectangle
プロパティ値
画面上の可視領域を表す Rectangle。
例
WorkflowView オブジェクトの Paint イベントに応じて、WorkflowView 上に直接画像を描画するメソッドの例を以下に示します。 ViewPortRectangle プロパティは、画像が実際に描画された、デザイン サーフェイス上の可視領域を返します。
void workflowView_Paint(object sender, PaintEventArgs e)
{
using (Graphics g = this.workflowView.CreateGraphics())
{
Bitmap draftImage = Resources.draft;
draftImage.MakeTransparent(Color.Magenta);
g.DrawImage(draftImage, this.workflowView.ViewPortRectangle);
}
base.OnPaint(e);
}
Sub workflowView_Paint(ByVal sender As Object, ByVal e As PaintEventArgs)
Using g As Graphics = Me.workflowView.CreateGraphics()
Dim draftImage As Bitmap = Resources.draft
draftImage.MakeTransparent(Color.Magenta)
g.DrawImage(draftImage, Me.workflowView.ViewPortRectangle)
End Using
MyBase.OnPaint(e)
End Sub
注釈
ViewPortRectangle にはワークフローの可視領域が設定されています。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET