WorkflowView.EnableFitToScreen 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.
Active sur l'aire de conception le bouton permettant de modifier le niveau de zoom de l'aire de conception de workflow de sorte que le workflow entier soit affiché dans le 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
Valeur de propriété
true
si le bouton dynamique est activé ; sinon, false
.
Exemples
L'exemple suivant montre comment activer le bouton Adapter à l'écran. La méthode commence par obtenir l'interface IDesignerHost du concepteur, puis récupère l'objet WorkflowView en utilisant la méthode GetService avant de modifier la propriété 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