WorkflowView.HScrollBar 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 la barre de défilement horizontale du WorkflowView.
public:
property System::Windows::Forms::HScrollBar ^ HScrollBar { System::Windows::Forms::HScrollBar ^ get(); };
public System.Windows.Forms.HScrollBar HScrollBar { get; }
member this.HScrollBar : System.Windows.Forms.HScrollBar
Public ReadOnly Property HScrollBar As HScrollBar
Valeur de propriété
ScrollBar que vous pouvez utiliser pour ajuster les paramètres et la visibilité de la barre de défilement horizontale.
Exemples
L'exemple de code suivant montre comment obtenir une instance de la classe WorkflowView. Le code définit ensuite plusieurs propriétés WorkflowView, notamment HScrollBar et VScrollBar, et appelle la méthode FitToWorkflowSize.
public void DisplayFullWorkflowView()
{
IDesignerHost designerHost = designSurface.GetService(typeof(IDesignerHost)) as IDesignerHost;
if (designerHost != null && designerHost.RootComponent != null)
{
WorkflowView workflowView = designerHost.RootComponent.Site.GetService(typeof(WorkflowView)) as WorkflowView;
if (workflowView != null)
{
workflowView.Dock = DockStyle.Fill;
workflowView.TabIndex = 1;
workflowView.TabStop = true;
workflowView.HScrollBar.TabStop = false;
workflowView.VScrollBar.TabStop = false;
workflowView.Focus();
workflowView.FitToWorkflowSize();
}
}
}
Public Sub DisplayFullWorkflowView()
Dim designerHost As IDesignerHost = CType(GetService(GetType(IDesignerHost)), IDesignerHost)
If designerHost IsNot Nothing And designerHost.RootComponent IsNot Nothing Then
Dim workflowView As WorkflowView = _
CType(designerHost.RootComponent.Site.GetService(GetType(WorkflowView)), WorkflowView)
If workflowView IsNot Nothing Then
workflowView.Dock = DockStyle.Fill
workflowView.TabIndex = 1
workflowView.TabStop = True
workflowView.HScrollBar.TabStop = False
workflowView.VScrollBar.TabStop = False
workflowView.Focus()
workflowView.FitToWorkflowSize()
End If
End If
End Sub