WorkflowView.FitToWorkflowSize Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Changes the zoom level to one hundred percent to display the full size of the workflow in the WorkflowView.
public:
void FitToWorkflowSize();
public void FitToWorkflowSize ();
member this.FitToWorkflowSize : unit -> unit
Public Sub FitToWorkflowSize ()
Examples
The following example initializes the properties of a WorkflowView object be setting several properties. The FitToWorkflowSize causes the WorkflowView object to display the full size of the workflow within the ViewPortRectangle.
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
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET