다음을 통해 공유


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 Workflow Wizard SDK 샘플의 일부입니다. 자세한 내용은 Outlook Workflow Wizard 샘플합니다.

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을 사용합니다.

적용 대상