# C1.Win.TouchToolKit.C1Zoom

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_TouchToolKit_C1Zoom" data-uid="C1.Win.TouchToolKit.C1Zoom" class="text-break">C1Zoom Class
</h1>
  <div class="markdown level0 summary"><p>Represents the component which can be attached to any existing form, and made the form can be zoom by two finger touch.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.marshalbyrefobject">MarshalByRefObject</a></div>
    <div class="level2"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.component">Component</a></div>
    <div class="level3"><span class="xref">C1Zoom</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.icomponent">IComponent</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.idisposable">IDisposable</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.TouchToolKit.html">C1.Win.TouchToolKit</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.TouchToolKit.4.8.dll</h6>
  <h5 id="C1_Win_TouchToolKit_C1Zoom_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[ToolboxBitmap(typeof(C1Zoom), &quot;Zoom.png&quot;)]
public class C1Zoom : Component, IComponent, IDisposable</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;ToolboxBitmap(GetType(C1Zoom), &quot;Zoom.png&quot;)&gt;
Public Class C1Zoom
    Inherits Component
    Implements IComponent, IDisposable</code></pre>
  </div>
  <h5 id="C1_Win_TouchToolKit_C1Zoom_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>
When form load, GcZoom will change all form's children control to a inner panel. So after form loaded, you can't 
access children controls by Form.Controls property. You should use GcZoom.Controls property instead.
</p>
<p>
If the form contains a <a class="xref" href="C1.Win.TouchToolKit.C1ZoomPanel.html">C1ZoomPanel</a>, <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> can't attach to the form.
</p>
<p>
A form can't attach two or more GcZoom component.
</p>
<p>
The <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> can't change the tooltip, contextMenu, common dialog's font and size.
</p>
</div>
  <h5 id="C1_Win_TouchToolKit_C1Zoom_examples"><strong>Examples</strong></h5>
  <p>
  The following code example shows how to configure <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> component to get different zoom effect. 
</p>
<p>
  You can copy the code to a exsit Windows Forms appliction. And set the form in the sample code as start form. 
</p>
<p>
  If you find a licenses error when run this code. Try to drag a <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> component to a 
  any Form from tool box can generate the licenses information to this project.
</p>
<pre><code class="lang-csharp">public class GcZoomDemo : Form
{
	private Label _label1;
	private ComboBox _previewModeComboBox;
	private Label _label2;
	private ComboBox _boundaryFeedbackModeComboBox;
	private Label _label3;
	private TextBox _maxZoomFactorTextBox;
	private Label _label4;
	private TextBox _zoomFactorTextBox;
	private TextBox _zoomFactor2TextBox;
	private GcZoom _gcZoom1 = new GcZoom();

 	public GcZoomDemo()
 	{
	 	InitializeComponent();

	 	SetGcZoomTarget();

	 	_previewModeComboBox.SelectedIndexChanged += previewModeComboBox_SelectedIndexChanged;
	 	_boundaryFeedbackModeComboBox.SelectedIndexChanged += boundaryFeedbackModeComboBox_SelectedIndexChanged;
	 	_maxZoomFactorTextBox.TextChanged += maxZoomFactorTextBox_TextChanged;
	 	_zoomFactorTextBox.TextChanged += zoomFactorTextBox_TextChanged;

	 	// GcZoom's ZoomFactor changed event
	 	_gcZoom1.ZoomFactorChanged += gcZoom1_ZoomFactorChanged;
 	}

 	void boundaryFeedbackModeComboBox_SelectedIndexChanged(object sender, EventArgs e)
 	{
	 	switch (_boundaryFeedbackModeComboBox.Text)
	 	{
		 	case "Split":
			 	_gcZoom1.BoundaryFeedbackMode = BoundaryFeedbackMode.Split;
			 	break;

		 	case "Standard":
			 	_gcZoom1.BoundaryFeedbackMode = BoundaryFeedbackMode.Standard;
			 	break;

		 	default:
			 	break;
	 	}
 	}

 	void previewModeComboBox_SelectedIndexChanged(object sender, EventArgs e)
 	{
	 	switch (_previewModeComboBox.Text)
	 	{
		 	case "Bitmap":
			 	_gcZoom1.ZoomPreviewMode = ZoomPreviewMode.Bitmap;
			 	break;

		 	case "AlternativeContent":
			 	_gcZoom1.ZoomPreviewMode = ZoomPreviewMode.AlternativeContent;
			 	_gcZoom1.AlternativeContentSettings.ForeColor = SystemColors.ControlDarkDark;
			 	_gcZoom1.AlternativeContentSettings.Format = "Zooming {Percentage}%";
			 	break;

		 	case "NoPreview":
			 	_gcZoom1.ZoomPreviewMode = ZoomPreviewMode.NoPreview;
			 	break;

		 	default:
			 	break;
	 	}
 	}

 	void SetGcZoomTarget()
 	{
	 	_gcZoom1.Target = this;
 	}

 	void maxZoomFactorTextBox_TextChanged(object sender, EventArgs e)
 	{
	 	string value = _maxZoomFactorTextBox.Text.Trim();

	 	try
	 	{
		 	float maxFactor = (float)Convert.ToDouble(value);
		 	_gcZoom1.MaxZoomFactor = maxFactor;
	 	}
	 	catch
	 	{
		 	_gcZoom1.MaxZoomFactor = 2f;
	 	}
 	}

 	void zoomFactorTextBox_TextChanged(object sender, EventArgs e)
 	{
	 	string value = _zoomFactorTextBox.Text.Trim();

	 	try
	 	{
		 	float zoomFactor = (float)Convert.ToDouble(value);
		 	_gcZoom1.ZoomFactor = zoomFactor;
	 	}
	 	catch
	 	{
			 Console.WriteLine(e.ToString());
			 _gcZoom1.ZoomFactor = 1f;
	 	}
 	}

 	void gcZoom1_ZoomFactorChanged(object sender, EventArgs e)
 	{
	 	_zoomFactor2TextBox.Text = _gcZoom1.ZoomFactor.ToString();
 	}

 	private void InitializeComponent()
 	{
		 _label1 = new Label();
	 	_label1.Text = "ZoomPreviewMode";
	 	_label1.Location = new Point(20, 20);
	 	_label1.Size = new Size(140, 20);

	 	_previewModeComboBox = new ComboBox();
	 	_previewModeComboBox.Items.AddRange(new object[] { "Bitmap", "AlternativeContent", "NoPreview" });
	 	_previewModeComboBox.Location = new Point(160, 20);

	 	_label2 = new Label();
	 	_label2.Text = "BoundaryFeedbackMode";
	 	_label2.Location = new Point(20, 50);
	 	_label2.Size = new Size(140, 20);

	 	_boundaryFeedbackModeComboBox = new ComboBox();
	 	_boundaryFeedbackModeComboBox.Items.AddRange(new object[] { "Split", "Standard"});
	 	_boundaryFeedbackModeComboBox.Location = new Point(160, 50);

	 	_label3 = new Label();
	 	_label3.Text = "MaxZoomFactor";
	 	_label3.Location = new Point(20, 80);
	 	_label3.Size = new Size(140, 20);

	 	_maxZoomFactorTextBox = new TextBox();
	 	_maxZoomFactorTextBox.Location = new Point(160, 80);

	 	_label4 = new Label();
	 	_label4.Text = "ZoomFactor";
	 	_label4.Location = new Point(20, 110);
	 	_label4.Size = new Size(140, 20);

	 	_zoomFactorTextBox = new TextBox();
	 	_zoomFactorTextBox.Location = new Point(160, 110);

	 	_zoomFactor2TextBox = new TextBox();
	 	_zoomFactor2TextBox.Text = "1";
	 	_zoomFactor2TextBox.ReadOnly = true;
	 	_zoomFactor2TextBox.Location = new Point(160, 135);

	 	this.Controls.Add(_label1);
	 	this.Controls.Add(_previewModeComboBox);
	 	this.Controls.Add(_label2);
	 	this.Controls.Add(_boundaryFeedbackModeComboBox);
	 	this.Controls.Add(_label3);
	 	this.Controls.Add(_maxZoomFactorTextBox);
	 	this.Controls.Add(_label4);
	 	this.Controls.Add(_zoomFactorTextBox);
	 	this.Controls.Add(_zoomFactor2TextBox);
	}
}</code></pre>
<pre><code class="lang-csharp">Public Class GcZoomDemo
	Inherits Form
	Private _label1 As Label
	Private _previewModeComboBox As ComboBox
	Private _label2 As Label
	Private _boundaryFeedbackModeComboBox As ComboBox
	Private _label3 As Label
	Private _maxZoomFactorTextBox As TextBox
	Private _label4 As Label
	Private _zoomFactorTextBox As TextBox
	Private _zoomFactor2TextBox As TextBox

	Private _gcZoom1 As New GcZoom()

	Public Sub New()
		InitializeComponent()

		SetGcZoomTarget()

		AddHandler _previewModeComboBox.SelectedIndexChanged, AddressOf previewModeComboBox_SelectedIndexChanged
		AddHandler _boundaryFeedbackModeComboBox.SelectedIndexChanged, AddressOf boundaryFeedbackModeComboBox_SelectedIndexChanged
		AddHandler _maxZoomFactorTextBox.TextChanged, AddressOf maxZoomFactorTextBox_TextChanged
		AddHandler _zoomFactorTextBox.TextChanged, AddressOf zoomFactorTextBox_TextChanged

 		' GcZoom's ZoomFactor changed event
 		AddHandler _gcZoom1.ZoomFactorChanged, AddressOf gcZoom1_ZoomFactorChanged
	End Sub

	Private Sub boundaryFeedbackModeComboBox_SelectedIndexChanged(sender As Object, e As EventArgs)
 		Select Case _boundaryFeedbackModeComboBox.Text
	 		Case "Split"
		 		_gcZoom1.BoundaryFeedbackMode = BoundaryFeedbackMode.Split
		 		Exit Select

	 		Case "Standard"
		 		_gcZoom1.BoundaryFeedbackMode = BoundaryFeedbackMode.Standard
		 		Exit Select

	 		Case Else
				Exit Select
		End Select
	End Sub

	Private Sub previewModeComboBox_SelectedIndexChanged(sender As Object, e As EventArgs)
 		Select Case _previewModeComboBox.Text
	 		Case "Bitmap"
		 		_gcZoom1.ZoomPreviewMode = ZoomPreviewMode.Bitmap
		 		Exit Select

	 		Case "AlternativeContent"
		 		_gcZoom1.ZoomPreviewMode = ZoomPreviewMode.AlternativeContent
		 		_gcZoom1.AlternativeContentSettings.ForeColor = SystemColors.ControlDarkDark
		 		_gcZoom1.AlternativeContentSettings.Format = "Zooming {Percentage}%"
		 		Exit Select

	 		Case "NoPreview"
		 		_gcZoom1.ZoomPreviewMode = ZoomPreviewMode.NoPreview
		 		Exit Select

	 		Case Else
				Exit Select
		End Select
	End Sub

	Private Sub SetGcZoomTarget()
 		_gcZoom1.Target = Me
	End Sub

	Private Sub maxZoomFactorTextBox_TextChanged(sender As Object, e As EventArgs)
 		Dim value As String = _maxZoomFactorTextBox.Text.Trim()

 		Try
	 		Dim maxFactor As Single = CSng(Convert.ToDouble(value))
	 		_gcZoom1.MaxZoomFactor = maxFactor
 		Catch
	 		_gcZoom1.MaxZoomFactor = 2.0F
 		End Try
	End Sub

	Private Sub zoomFactorTextBox_TextChanged(sender As Object, e As EventArgs)
 		Dim value As String = _zoomFactorTextBox.Text.Trim()

 		Try
	 		Dim zoomFactor As Single = CSng(Convert.ToDouble(value))
	 		_gcZoom1.ZoomFactor = zoomFactor
 		Catch
	 		Console.WriteLine(e.ToString())
	 		_gcZoom1.ZoomFactor = 1.0F
 		End Try
	End Sub

	Private Sub gcZoom1_ZoomFactorChanged(sender As Object, e As EventArgs)
 		_zoomFactor2TextBox.Text = _gcZoom1.ZoomFactor.ToString()
	End Sub

	Private Sub InitializeComponent()
 		_label1 = New Label()
 		_label1.Text = "ZoomPreviewMode"
 		_label1.Location = New Point(20, 20)
 		_label1.Size = New Size(140, 20)

 		_previewModeComboBox = New ComboBox()
 		_previewModeComboBox.Items.AddRange(New Object() {"Bitmap", "AlternativeContent", "NoPreview"})
 		_previewModeComboBox.Location = New Point(160, 20)

 		_label2 = New Label()
 		_label2.Text = "BoundaryFeedbackMode"
		_label2.Location = New Point(20, 50)
 		_label2.Size = New Size(140, 20)

 		_boundaryFeedbackModeComboBox = New ComboBox()
 		_boundaryFeedbackModeComboBox.Items.AddRange(New Object() {"Split", "Standard"})
 		_boundaryFeedbackModeComboBox.Location = New Point(160, 50)

 		_label3 = New Label()
 		_label3.Text = "MaxZoomFactor"
 		_label3.Location = New Point(20, 80)
 		_label3.Size = New Size(140, 20)

 		_maxZoomFactorTextBox = New TextBox()
 		_maxZoomFactorTextBox.Location = New Point(160, 80)

 		_label4 = New Label()
 		_label4.Text = "ZoomFactor"
 		_label4.Location = New Point(20, 110)
 		_label4.Size = New Size(140, 20)

 		_zoomFactorTextBox = New TextBox()
 		_zoomFactorTextBox.Location = New Point(160, 110)

 		_zoomFactor2TextBox = New TextBox()
 		_zoomFactor2TextBox.Text = "1"
 		_zoomFactor2TextBox.[ReadOnly] = True
 		_zoomFactor2TextBox.Location = New Point(160, 135)

 		Me.Controls.Add(_label1)
 		Me.Controls.Add(_previewModeComboBox)
 		Me.Controls.Add(_label2)
 		Me.Controls.Add(_boundaryFeedbackModeComboBox)
 		Me.Controls.Add(_label3)
 		Me.Controls.Add(_maxZoomFactorTextBox)
 		Me.Controls.Add(_label4)
 		Me.Controls.Add(_zoomFactorTextBox)
 		Me.Controls.Add(_zoomFactor2TextBox)
	End Sub
End Class</code></pre>

  <h3 id="constructors">Constructors
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom__ctor" data-uid="C1.Win.TouchToolKit.C1Zoom.#ctor">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.-ctor.html#C1_Win_TouchToolKit_C1Zoom__ctor">C1Zoom()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> class.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom__ctor_System_ComponentModel_IContainer_" data-uid="C1.Win.TouchToolKit.C1Zoom.#ctor(System.ComponentModel.IContainer)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.-ctor.html#C1_Win_TouchToolKit_C1Zoom__ctor_System_ComponentModel_IContainer_">C1Zoom(IContainer)</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> class with the specified container.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AllowDoubleTapZoom" data-uid="C1.Win.TouchToolKit.C1Zoom.AllowDoubleTapZoom">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AllowDoubleTapZoom.html#C1_Win_TouchToolKit_C1Zoom_AllowDoubleTapZoom">AllowDoubleTapZoom</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether allow double tap to zoom. <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomFactor.html#C1_Win_TouchToolKit_C1Zoom_ZoomFactor">ZoomFactor</a> will change to 2f or <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.MaxZoomFactor.html#C1_Win_TouchToolKit_C1Zoom_MaxZoomFactor">MaxZoomFactor</a> if it is less than 2f before double tap; otherwise, it will change to 1f.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AllowMouseWheelScroll" data-uid="C1.Win.TouchToolKit.C1Zoom.AllowMouseWheelScroll">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AllowMouseWheelScroll.html#C1_Win_TouchToolKit_C1Zoom_AllowMouseWheelScroll">AllowMouseWheelScroll</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets which types of MouseWheel scroll are possible.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AllowMouseWheelZoom" data-uid="C1.Win.TouchToolKit.C1Zoom.AllowMouseWheelZoom">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AllowMouseWheelZoom.html#C1_Win_TouchToolKit_C1Zoom_AllowMouseWheelZoom">AllowMouseWheelZoom</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether allow zoom by control + mouse wheel.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AllowPanScroll" data-uid="C1.Win.TouchToolKit.C1Zoom.AllowPanScroll">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AllowPanScroll.html#C1_Win_TouchToolKit_C1Zoom_AllowPanScroll">AllowPanScroll</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether allow scroll the form by pan gesture.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AllowPinchZoom" data-uid="C1.Win.TouchToolKit.C1Zoom.AllowPinchZoom">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AllowPinchZoom.html#C1_Win_TouchToolKit_C1Zoom_AllowPinchZoom">AllowPinchZoom</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether the form can perform gesture zoom.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AllowResizeByZoom" data-uid="C1.Win.TouchToolKit.C1Zoom.AllowResizeByZoom">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AllowResizeByZoom.html#C1_Win_TouchToolKit_C1Zoom_AllowResizeByZoom">AllowResizeByZoom</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates whether resize form when zooming form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AllowZoomByResize" data-uid="C1.Win.TouchToolKit.C1Zoom.AllowZoomByResize">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AllowZoomByResize.html#C1_Win_TouchToolKit_C1Zoom_AllowZoomByResize">AllowZoomByResize</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates whether zoom form when resizing form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AlternativeContentSettings" data-uid="C1.Win.TouchToolKit.C1Zoom.AlternativeContentSettings">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AlternativeContentSettings.html#C1_Win_TouchToolKit_C1Zoom_AlternativeContentSettings">AlternativeContentSettings</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the settings indicating how to display zoom factor when gesture zooming.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AutoShowControl" data-uid="C1.Win.TouchToolKit.C1Zoom.AutoShowControl">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AutoShowControl.html#C1_Win_TouchToolKit_C1Zoom_AutoShowControl">AutoShowControl</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates whether the control auto show when get focus or touch keyboard popup.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_BackColor" data-uid="C1.Win.TouchToolKit.C1Zoom.BackColor">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.BackColor.html#C1_Win_TouchToolKit_C1Zoom_BackColor">BackColor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the background color of blank areas in Form when to zoom and scroll.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_BackgroundImage" data-uid="C1.Win.TouchToolKit.C1Zoom.BackgroundImage">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.BackgroundImage.html#C1_Win_TouchToolKit_C1Zoom_BackgroundImage">BackgroundImage</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the background image displayed in the blank areas of Form when to zoom and scroll.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_BackgroundImageLayout" data-uid="C1.Win.TouchToolKit.C1Zoom.BackgroundImageLayout">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.BackgroundImageLayout.html#C1_Win_TouchToolKit_C1Zoom_BackgroundImageLayout">BackgroundImageLayout</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the background image layout as defined in the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.imagelayout">ImageLayout</a> enumeration.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_BoundaryFeedbackMode" data-uid="C1.Win.TouchToolKit.C1Zoom.BoundaryFeedbackMode">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.BoundaryFeedbackMode.html#C1_Win_TouchToolKit_C1Zoom_BoundaryFeedbackMode">BoundaryFeedbackMode</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating how to show visual feedback when scroll reach end point.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ControlBars" data-uid="C1.Win.TouchToolKit.C1Zoom.ControlBars">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ControlBars.html#C1_Win_TouchToolKit_C1Zoom_ControlBars">ControlBars</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the collection of <a class="xref" href="C1.Win.TouchToolKit.ControlBar.html">ControlBar</a> contained within the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_Controls" data-uid="C1.Win.TouchToolKit.C1Zoom.Controls">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.Controls.html#C1_Win_TouchToolKit_C1Zoom_Controls">Controls</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the child controls of the owner form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_DefaultZoomPolicies" data-uid="C1.Win.TouchToolKit.C1Zoom.DefaultZoomPolicies">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.DefaultZoomPolicies.html#C1_Win_TouchToolKit_C1Zoom_DefaultZoomPolicies">DefaultZoomPolicies</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the default zoom policies.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_FullScreenMode" data-uid="C1.Win.TouchToolKit.C1Zoom.FullScreenMode">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.FullScreenMode.html#C1_Win_TouchToolKit_C1Zoom_FullScreenMode">FullScreenMode</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the full screen mode used by owner form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_InnerPanel" data-uid="C1.Win.TouchToolKit.C1Zoom.InnerPanel">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.InnerPanel.html#C1_Win_TouchToolKit_C1Zoom_InnerPanel">InnerPanel</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the inner panel that contains the target form's child controls.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_InnerPanelLayoutMode" data-uid="C1.Win.TouchToolKit.C1Zoom.InnerPanelLayoutMode">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.InnerPanelLayoutMode.html#C1_Win_TouchToolKit_C1Zoom_InnerPanelLayoutMode">InnerPanelLayoutMode</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the layout of InnerPanel after enlarge form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_IsHorizontalRailEnabled" data-uid="C1.Win.TouchToolKit.C1Zoom.IsHorizontalRailEnabled">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.IsHorizontalRailEnabled.html#C1_Win_TouchToolKit_C1Zoom_IsHorizontalRailEnabled">IsHorizontalRailEnabled</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates whether the scroll rail is enabled for the horizontal axis.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_IsPanWindowShown" data-uid="C1.Win.TouchToolKit.C1Zoom.IsPanWindowShown">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.IsPanWindowShown.html#C1_Win_TouchToolKit_C1Zoom_IsPanWindowShown">IsPanWindowShown</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the pan window is shown.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_IsVerticalRailEnabled" data-uid="C1.Win.TouchToolKit.C1Zoom.IsVerticalRailEnabled">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.IsVerticalRailEnabled.html#C1_Win_TouchToolKit_C1Zoom_IsVerticalRailEnabled">IsVerticalRailEnabled</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that indicates whether the scroll rail is enabled for the vertical axis.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_KeepAspectRatio" data-uid="C1.Win.TouchToolKit.C1Zoom.KeepAspectRatio">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.KeepAspectRatio.html#C1_Win_TouchToolKit_C1Zoom_KeepAspectRatio">KeepAspectRatio</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether to keep aspect ratio when resize the form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_MaxZoomFactor" data-uid="C1.Win.TouchToolKit.C1Zoom.MaxZoomFactor">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.MaxZoomFactor.html#C1_Win_TouchToolKit_C1Zoom_MaxZoomFactor">MaxZoomFactor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the maximum zoom factor of the form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ScrollIndicatorMode" data-uid="C1.Win.TouchToolKit.C1Zoom.ScrollIndicatorMode">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ScrollIndicatorMode.html#C1_Win_TouchToolKit_C1Zoom_ScrollIndicatorMode">ScrollIndicatorMode</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating which mode to indicate current scroll location.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ScrollLocation" data-uid="C1.Win.TouchToolKit.C1Zoom.ScrollLocation">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ScrollLocation.html#C1_Win_TouchToolKit_C1Zoom_ScrollLocation">ScrollLocation</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the scroll location of the form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_Site" data-uid="C1.Win.TouchToolKit.C1Zoom.Site">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.Site.html#C1_Win_TouchToolKit_C1Zoom_Site">Site</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.isite">ISite</a> of the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.component">Component</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ZoomFactor" data-uid="C1.Win.TouchToolKit.C1Zoom.ZoomFactor">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomFactor.html#C1_Win_TouchToolKit_C1Zoom_ZoomFactor">ZoomFactor</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the zoom factor of the form.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ZoomPolicies" data-uid="C1.Win.TouchToolKit.C1Zoom.ZoomPolicies">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomPolicies.html#C1_Win_TouchToolKit_C1Zoom_ZoomPolicies">ZoomPolicies</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the custom zoom policies. <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> will look for zoom policies in this
list.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ZoomPreviewMode" data-uid="C1.Win.TouchToolKit.C1Zoom.ZoomPreviewMode">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomPreviewMode.html#C1_Win_TouchToolKit_C1Zoom_ZoomPreviewMode">ZoomPreviewMode</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating how to preview the form when gesture zooming.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ZoomSnapDistance" data-uid="C1.Win.TouchToolKit.C1Zoom.ZoomSnapDistance">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomSnapDistance.html#C1_Win_TouchToolKit_C1Zoom_ZoomSnapDistance">ZoomSnapDistance</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicate the minimum distance that can cause current zoom factor snap to a zoom factor in <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomSnapPoints.html#C1_Win_TouchToolKit_C1Zoom_ZoomSnapPoints">ZoomSnapPoints</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ZoomSnapPoints" data-uid="C1.Win.TouchToolKit.C1Zoom.ZoomSnapPoints">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomSnapPoints.html#C1_Win_TouchToolKit_C1Zoom_ZoomSnapPoints">ZoomSnapPoints</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a group of zoom factor, when zoom ending, the result zoom factor will try to snap to a zoom factor in this group.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ZoomTargets" data-uid="C1.Win.TouchToolKit.C1Zoom.ZoomTargets">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomTargets.html#C1_Win_TouchToolKit_C1Zoom_ZoomTargets">ZoomTargets</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the collection of controls that can receive the zoom gesture message.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AboutBox" data-uid="C1.Win.TouchToolKit.C1Zoom.AboutBox">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AboutBox.html#C1_Win_TouchToolKit_C1Zoom_AboutBox">AboutBox()</a>
        </td>
        <td class="markdown level1 summary"><p>Shows the product information window.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_BeginAddControls" data-uid="C1.Win.TouchToolKit.C1Zoom.BeginAddControls">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.BeginAddControls.html#C1_Win_TouchToolKit_C1Zoom_BeginAddControls">BeginAddControls()</a>
        </td>
        <td class="markdown level1 summary"><p>Call this method before change child control collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ClosePanWindow" data-uid="C1.Win.TouchToolKit.C1Zoom.ClosePanWindow">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ClosePanWindow.html#C1_Win_TouchToolKit_C1Zoom_ClosePanWindow">ClosePanWindow()</a>
        </td>
        <td class="markdown level1 summary"><p>Closes the pan window.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_Dispose_System_Boolean_" data-uid="C1.Win.TouchToolKit.C1Zoom.Dispose(System.Boolean)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.Dispose.html#C1_Win_TouchToolKit_C1Zoom_Dispose_System_Boolean_">Dispose(bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Releases the unmanaged resources used by the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.component">Component</a> and optionally releases the managed resources.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_EndAddControls" data-uid="C1.Win.TouchToolKit.C1Zoom.EndAddControls">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.EndAddControls.html#C1_Win_TouchToolKit_C1Zoom_EndAddControls">EndAddControls()</a>
        </td>
        <td class="markdown level1 summary"><p>Call this method after change child control collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_GetDisplayRectangle_System_Windows_Forms_Control_" data-uid="C1.Win.TouchToolKit.C1Zoom.GetDisplayRectangle(System.Windows.Forms.Control)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.GetDisplayRectangle.html#C1_Win_TouchToolKit_C1Zoom_GetDisplayRectangle_System_Windows_Forms_Control_">GetDisplayRectangle(Control)</a>
        </td>
        <td class="markdown level1 summary"><p>Get control visibility rectangle.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_OnAnimationCompleted_System_EventArgs_" data-uid="C1.Win.TouchToolKit.C1Zoom.OnAnimationCompleted(System.EventArgs)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.OnAnimationCompleted.html#C1_Win_TouchToolKit_C1Zoom_OnAnimationCompleted_System_EventArgs_">OnAnimationCompleted(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <span class="xref">AnimationCompleted</span> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_OnAnimationStarting_C1_Win_TouchToolKit_AnimationStartingEventArgs_" data-uid="C1.Win.TouchToolKit.C1Zoom.OnAnimationStarting(C1.Win.TouchToolKit.AnimationStartingEventArgs)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.OnAnimationStarting.html#C1_Win_TouchToolKit_C1Zoom_OnAnimationStarting_C1_Win_TouchToolKit_AnimationStartingEventArgs_">OnAnimationStarting(AnimationStartingEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <span class="xref">AnimationStarting</span> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_OnControlAutoShowing_C1_Win_TouchToolKit_ControlAutoShowingEventArgs_" data-uid="C1.Win.TouchToolKit.C1Zoom.OnControlAutoShowing(C1.Win.TouchToolKit.ControlAutoShowingEventArgs)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.OnControlAutoShowing.html#C1_Win_TouchToolKit_C1Zoom_OnControlAutoShowing_C1_Win_TouchToolKit_ControlAutoShowingEventArgs_">OnControlAutoShowing(ControlAutoShowingEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ControlAutoShowing.html">ControlAutoShowing</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_OnControlBoundsZooming_C1_Win_TouchToolKit_ControlBoundsZoomingEventArgs_" data-uid="C1.Win.TouchToolKit.C1Zoom.OnControlBoundsZooming(C1.Win.TouchToolKit.ControlBoundsZoomingEventArgs)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.OnControlBoundsZooming.html#C1_Win_TouchToolKit_C1Zoom_OnControlBoundsZooming_C1_Win_TouchToolKit_ControlBoundsZoomingEventArgs_">OnControlBoundsZooming(ControlBoundsZoomingEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ControlBoundsZooming.html">ControlBoundsZooming</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_OnControlFontZooming_C1_Win_TouchToolKit_ControlFontZoomingEventArgs_" data-uid="C1.Win.TouchToolKit.C1Zoom.OnControlFontZooming(C1.Win.TouchToolKit.ControlFontZoomingEventArgs)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.OnControlFontZooming.html#C1_Win_TouchToolKit_C1Zoom_OnControlFontZooming_C1_Win_TouchToolKit_ControlFontZoomingEventArgs_">OnControlFontZooming(ControlFontZoomingEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ControlFontZooming.html">ControlFontZooming</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_OnManipulationStarting_C1_Win_TouchToolKit_ZoomManipulationStartingEventArgs_" data-uid="C1.Win.TouchToolKit.C1Zoom.OnManipulationStarting(C1.Win.TouchToolKit.ZoomManipulationStartingEventArgs)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.OnManipulationStarting.html#C1_Win_TouchToolKit_C1Zoom_OnManipulationStarting_C1_Win_TouchToolKit_ZoomManipulationStartingEventArgs_">OnManipulationStarting(ZoomManipulationStartingEventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ManipulationStarting.html">ManipulationStarting</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_OnZoomFactorChanged_System_EventArgs_" data-uid="C1.Win.TouchToolKit.C1Zoom.OnZoomFactorChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.OnZoomFactorChanged.html#C1_Win_TouchToolKit_C1Zoom_OnZoomFactorChanged_System_EventArgs_">OnZoomFactorChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomFactorChanged.html">ZoomFactorChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_SetScrollLocation_System_Drawing_Point_System_Boolean_" data-uid="C1.Win.TouchToolKit.C1Zoom.SetScrollLocation(System.Drawing.Point,System.Boolean)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.SetScrollLocation.html#C1_Win_TouchToolKit_C1Zoom_SetScrollLocation_System_Drawing_Point_System_Boolean_">SetScrollLocation(Point, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Sets the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ScrollLocation.html#C1_Win_TouchToolKit_C1Zoom_ScrollLocation">ScrollLocation</a> and determines whether use animation when change <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ScrollLocation.html#C1_Win_TouchToolKit_C1Zoom_ScrollLocation">ScrollLocation</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_SetZoomFactor_System_Single_System_Boolean_" data-uid="C1.Win.TouchToolKit.C1Zoom.SetZoomFactor(System.Single,System.Boolean)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.SetZoomFactor.html#C1_Win_TouchToolKit_C1Zoom_SetZoomFactor_System_Single_System_Boolean_">SetZoomFactor(float, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Sets the <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomFactor.html#C1_Win_TouchToolKit_C1Zoom_ZoomFactor">ZoomFactor</a> and determines whether use animation when change <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomFactor.html#C1_Win_TouchToolKit_C1Zoom_ZoomFactor">ZoomFactor</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ShowPanWindow" data-uid="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow.html#C1_Win_TouchToolKit_C1Zoom_ShowPanWindow">ShowPanWindow()</a>
        </td>
        <td class="markdown level1 summary"><p>Shows the pan window.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ShowPanWindow_System_Drawing_Point_" data-uid="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow(System.Drawing.Point)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow.html#C1_Win_TouchToolKit_C1Zoom_ShowPanWindow_System_Drawing_Point_">ShowPanWindow(Point)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows the pan window with the specified location.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ShowPanWindow_System_Drawing_Point_System_Drawing_Size_" data-uid="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow(System.Drawing.Point,System.Drawing.Size)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow.html#C1_Win_TouchToolKit_C1Zoom_ShowPanWindow_System_Drawing_Point_System_Drawing_Size_">ShowPanWindow(Point, Size)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows the pan window with the specified location and size.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ShowPanWindow_System_Windows_Forms_FormStartPosition_" data-uid="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow(System.Windows.Forms.FormStartPosition)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow.html#C1_Win_TouchToolKit_C1Zoom_ShowPanWindow_System_Windows_Forms_FormStartPosition_">ShowPanWindow(FormStartPosition)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows the pan window with the specified start position.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ShowPanWindow_System_Windows_Forms_FormStartPosition_System_Drawing_Size_" data-uid="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow(System.Windows.Forms.FormStartPosition,System.Drawing.Size)">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ShowPanWindow.html#C1_Win_TouchToolKit_C1Zoom_ShowPanWindow_System_Windows_Forms_FormStartPosition_System_Drawing_Size_">ShowPanWindow(FormStartPosition, Size)</a>
        </td>
        <td class="markdown level1 summary"><p>Shows the pan window with the specified start position and size.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="events">Events
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AnimationCompleted" data-uid="C1.Win.TouchToolKit.C1Zoom.AnimationCompleted">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AnimationCompleted.html">AnimationCompleted</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when animation is completed.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_AnimationStarting" data-uid="C1.Win.TouchToolKit.C1Zoom.AnimationStarting">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.AnimationStarting.html">AnimationStarting</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs before <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> start animation.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ControlAutoShowing" data-uid="C1.Win.TouchToolKit.C1Zoom.ControlAutoShowing">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ControlAutoShowing.html">ControlAutoShowing</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs before <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> start show the target control.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ControlBoundsZooming" data-uid="C1.Win.TouchToolKit.C1Zoom.ControlBoundsZooming">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ControlBoundsZooming.html">ControlBoundsZooming</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs before <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> start zoom the target control's bounds.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ControlFontZooming" data-uid="C1.Win.TouchToolKit.C1Zoom.ControlFontZooming">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ControlFontZooming.html">ControlFontZooming</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs before <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.html">C1Zoom</a> start zoom the target control's font.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ManipulationStarting" data-uid="C1.Win.TouchToolKit.C1Zoom.ManipulationStarting">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ManipulationStarting.html">ManipulationStarting</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when the manipulation processor is first created.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_TouchToolKit_C1Zoom_ZoomFactorChanged" data-uid="C1.Win.TouchToolKit.C1Zoom.ZoomFactorChanged">
          <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomFactorChanged.html">ZoomFactorChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when <a class="xref" href="C1.Win.TouchToolKit.C1Zoom.ZoomFactor.html#C1_Win_TouchToolKit_C1Zoom_ZoomFactor">ZoomFactor</a> changed.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
