WorkflowView.Zoom Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece el nivel de zoom de WorkflowView.
public:
property int Zoom { int get(); void set(int value); };
public int Zoom { get; set; }
member this.Zoom : int with get, set
Public Property Zoom As Integer
Valor de propiedad
El nivel de la zoom de WorkflowView.
Excepciones
Si el nivel de zoom es menor que el nivel de zoom mínimo de AmbientTheme
o bien
si el nivel de zoom supera el nivel de zoom máximo de AmbientTheme.
Ejemplos
En el ejemplo siguiente se muestra cómo se establece la propiedad Zoom de WorkflowView.
Este ejemplo de código pertenece al ejemplo SDK del monitor de flujo de trabajo del archivo MainForm.cs. Para obtener más información, consulte Ejemplo de monitor de flujo de trabajo.
private void ToolStripComboBoxZoom_SelectedIndexChanged(object sender, EventArgs e)
{
if (workflowViewHost.WorkflowView == null) return;
//Parse the value and set the WorkflowView zoom - set to 100% if invalid
string newZoom = this.toolStripComboBoxZoom.Text.Trim();
if (newZoom.EndsWith("%"))
newZoom = newZoom.Substring(0, newZoom.Length - 1);
if (newZoom.Length > 0)
{
try
{
this.workflowViewHost.WorkflowView.Zoom = Convert.ToInt32(newZoom);
}
catch
{
this.workflowViewHost.WorkflowView.Zoom = 100;
}
}
else
{
this.workflowViewHost.WorkflowView.Zoom = 100;
}
}
Private Sub ToolStripComboBoxZoom_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles toolStripComboBoxZoom.SelectedIndexChanged
If workflowViewHost.WorkflowView Is Nothing Then
Return
End If
'Parse the value and set the WorkflowView zoom - set to 100% if invalid
Dim NewZoom As String = Me.toolStripComboBoxZoom.Text.Trim()
If NewZoom.EndsWith("%") Then
NewZoom = NewZoom.Substring(0, NewZoom.Length - 1)
End If
If NewZoom.Length > 0 Then
Try
Me.workflowViewHost.WorkflowView.Zoom = Convert.ToInt32(NewZoom)
Catch
Me.workflowViewHost.WorkflowView.Zoom = 100
End Try
Else
Me.workflowViewHost.WorkflowView.Zoom = 100
End If
End Sub
Comentarios
Utilice la característica de zoom para ampliar o reducir el tamaño de los componentes dentro de WorkflowView. AmbientTheme establece los niveles de zoom mínimos y máximos para WorkflowView.