WorkflowView.EnableFitToScreen Proprietà

Definizione

Abilita il pulsante nell'area di progettazione che, se selezionato, modifica il livello di zoom dell'area di progettazione del flusso di lavoro consentendo la visualizzazione dell'intero flusso di lavoro nell'oggetto WorkflowView.

public:
 property bool EnableFitToScreen { bool get(); void set(bool value); };
public bool EnableFitToScreen { get; set; }
member this.EnableFitToScreen : bool with get, set
Public Property EnableFitToScreen As Boolean

Valore della proprietà

È true se il pulsante dinamico è abilitato. In caso contrario è false.

Esempio

Nell'esempio seguente viene illustrato come abilitare il pulsante Adatta allo schermo. Il metodo ottiene innanzitutto l'interfaccia IDesignerHost per la finestra di progettazione, quindi recupera l'oggetto WorkflowView utilizzando il metodo GetService prima di modificare la proprietà EnableFitToScreen.

public void EnableFitToScreen()
{
    IDesignerHost designerHost = GetService(typeof(IDesignerHost)) as IDesignerHost;
    WorkflowView workflowView =
        designerHost.RootComponent.Site.GetService(typeof(WorkflowView)) as WorkflowView;

    if (workflowView != null)
    {
        workflowView.EnableFitToScreen = true;
        workflowView.FitToScreenSize();
    }
}
Public Sub EnableFitToScreen()

    Dim designerHost As IDesignerHost = CType(GetService(GetType(IDesignerHost)), IDesignerHost)
    Dim workflowView As WorkflowView = _
        CType(designerHost.RootComponent.Site.GetService(GetType(WorkflowView)), WorkflowView)

    If workflowView IsNot Nothing Then
        workflowView.EnableFitToScreen = True
        workflowView.FitToScreenSize()
    End If
End Sub

Si applica a