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. Данный пример является частью образца пакета SDK «Outlook Workflow Wizard». Дополнительные сведения см. в примере мастера рабочих процессов 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, чтобы получить или настроить расположение полосы прокрутки в рабочей области проектирования.

Применяется к