WorkflowView.ScrollPosition Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la position de la barre de défilement sur le 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
Valeur de propriété
Point qui décrit l'emplacement de la barre de défilement, en coordonnées d'écran.
Exemples
L'exemple suivant montre comment définir la propriété ScrollPosition au sein d'une implémentation de la méthode OnMouseMove d'un contrôle Panel. Cet exemple fait partie de l'exemple du Kit de développement logiciel Outlook Workflow Wizard (SDK). Pour plus d’informations, consultez l’exemple d’Assistant Flux de travail 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
Remarques
Utilisez le ScrollPosition pour obtenir ou ajuster l'emplacement de la barre de défilement sur l'aire de conception.