次の方法で共有


WorkflowView.ScrollPosition プロパティ

定義

WorkflowView 上のスクロール バーの位置を取得または設定します。

public:
 property System::Drawing::Point ScrollPosition { System::Drawing::Point get(); void set(System::Drawing::Point value); };
public System.Drawing.Point ScrollPosition { get; set; }
member this.ScrollPosition : System.Drawing.Point with get, set
Public Property ScrollPosition As Point

プロパティ値

Point

画面座標で表したスクロール バーの位置。

ScrollPosition プロパティの値を設定する例を以下に示します。これは Panel コントロールの OnMouseMove メソッドを実装したものです。 これは Outlook ワークフロー ウィザード SDK サンプルから抜粋したものです。 詳細については、「ワークフロー ウィザードのサンプルOutlook参照してください。

protected override bool OnMouseMove(MouseEventArgs eventArgs)
{
    // Allow other components to process this event by not returning true.
    if (this.mouseDown)
    {
        this.workflowView.ScrollPosition = new Point(eventArgs.X, eventArgs.Y);
    }
    return false;
}
Protected Overrides Function OnMouseMove(ByVal eventArgs As System.Windows.Forms.MouseEventArgs) As Boolean
    ' Allow other components to process this event by not returning true.
    If (Me.mouseDown) Then
        Me.workflowView.ScrollPosition = New Point(eventArgs.X, eventArgs.Y)
    End If
    Return False
End Function

注釈

ScrollPosition で取得または設定できるのは、デザイン サーフェイス上のスクロール バーの位置です。

適用対象