# C1.Win.TouchToolKit.C1Magnify.Move

## Content

<div class="doc-site-dotnet-api-container">




<h1 id="C1_Win_TouchToolKit_C1Magnify_Move" data-uid="C1.Win.TouchToolKit.C1Magnify.Move" class="text-break">Move Event
</h1>
<div class="markdown level0 summary"><p>Occurs when the magnifier is moving.</p>
</div>
<div class="markdown level0 conceptual"></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_C1Magnify_Move_syntax">Syntax</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public event EventHandler&lt;MagnifierEventArgs&gt; Move</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Event Move As EventHandler(Of MagnifierEventArgs)</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.eventhandler-1">EventHandler</a>&lt;<a class="xref" href="C1.Win.TouchToolKit.MagnifierEventArgs.html">MagnifierEventArgs</a>&gt;</td>
      <td>Occurs when the magnifier is moving.</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_Win_TouchToolKit_C1Magnify_Move_examples"><strong>Examples</strong></h5>
<p>
  The following code example shows how to use this event. 
</p>
<pre><code class="lang-csharp">public class GcMagnifierEventDemo : Form
{
	private TextBox _magnifierTextBox;
	private GcMagnifier _gcMagnifierObj = new GcMagnifier();

	public GcMagnifierEventDemo()
	{
		InitializeComponent();

		_gcMagnifierObj.SetEnableMagnifier(_magnifierTextBox, true);
		_gcMagnifierObj.Move += _gcMagnifierObj_Move;
	}

	void _gcMagnifierObj_Move(object sender, MagnifierEventArgs e)
	{
		Console.WriteLine(e.TargetControl.ToString());
		Console.WriteLine(e.Position.ToString());
	}

	private void InitializeComponent()
	{
		_magnifierTextBox = new TextBox();
		_magnifierTextBox.Text = "This is a TextBox";
		_magnifierTextBox.Location = new Point(20, 20);
		_magnifierTextBox.Size = new Size(160, 20);
		this.Controls.Add(_magnifierTextBox);
	}
}</code></pre>
<pre><code class="lang-csharp">Public Class GcMagnifierEventDemo
	Inherits Form
	Private _magnifierTextBox As TextBox
	Private _gcMagnifierObj As New GcMagnifier()

	Public Sub New()
		InitializeComponent()

		_gcMagnifierObj.SetEnableMagnifier(_magnifierTextBox, True)
		AddHandler _gcMagnifierObj.Move, AddressOf _gcMagnifierObj_Move
	End Sub

	Private Sub _gcMagnifierObj_Move(sender As Object, e As MagnifierEventArgs)
		Console.WriteLine(e.TargetControl.ToString())
		Console.WriteLine(e.Position.ToString())
	End Sub

	Private Sub InitializeComponent()
		_magnifierTextBox = New TextBox()
		_magnifierTextBox.Text = "This is a TextBox"
		_magnifierTextBox.Location = New Point(20, 20)
		_magnifierTextBox.Size = New Size(160, 20)
		Me.Controls.Add(_magnifierTextBox)
	End Sub
End Class</code></pre>

</div>
