# C1.Win.TouchToolKit.MagnifierEventArgs.TargetControl

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Win_TouchToolKit_MagnifierEventArgs_TargetControl_" data-uid="C1.Win.TouchToolKit.MagnifierEventArgs.TargetControl*">TargetControl Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Win_TouchToolKit_MagnifierEventArgs_TargetControl_" data-uid="C1.Win.TouchToolKit.MagnifierEventArgs.TargetControl*"></a>
<h4 id="C1_Win_TouchToolKit_MagnifierEventArgs_TargetControl" data-uid="C1.Win.TouchToolKit.MagnifierEventArgs.TargetControl">TargetControl</h4>
<div class="markdown level1 summary"><p>Gets the target object which magnifier shows on it.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public Control TargetControl { get; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public ReadOnly Property TargetControl As Control</code></pre>
</div>
<h5 class="propertyValue">Property Value</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.windows.forms.control">Control</a></td>
      <td><p>The target control which magnifier shows on it.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_Win_TouchToolKit_MagnifierEventArgs_TargetControl_examples">Examples</h5>
<p>
  The following code example shows how to use this property. 
</p>
<p>
  This code example is part of a larger example provided for the <a class="xref" href="C1.Win.TouchToolKit.MagnifierEventArgs.html">MagnifierEventArgs</a> class.
</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());
	}

	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())
	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>
