[]
        
(Showing Draft Content)

C1.Win.TouchToolKit.C1Magnify.ShowCursor

ShowCursor Property

ShowCursor

Gets or sets a value indicating whether system cursor is displayed in the magnifier.

Declaration
public bool ShowCursor { get; set; }
Property Value
Type Description
bool

true if system cursor is displayed in the magnifier; otherwise, false.The default is false.

Examples

The following code example shows how to use this property.

This code example is part of a larger example provided for the C1Magnify class.

public class GcMagnifierDemo : Form
{
	private GcMagnifier _gcMagnifierObj = new GcMagnifier();

	public GcMagnifierDemo()
	{
		// Magnifier display the system cursor
		_gcMagnifierObj.ShowCursor = true;
	}
}
Public Class GcMagnifierDemo
	Inherits Form
	Private _gcMagnifierObj As New GcMagnifier()

	Public Sub New()
		' Magnifier display the system cursor
		_gcMagnifierObj.ShowCursor = True
	End Sub
End Class