WorkflowView.ScrollPosition 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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
속성 값
화면 좌표에서 스크롤 막대의 위치를 설명하는 점입니다.
예제
다음 예제에서는 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을 사용합니다.