[]
        
(Showing Draft Content)

C1.Win.TouchToolKit.C1Magnify.Shape

Shape Property

Shape

Gets or sets a value indicating the appearance of the magnifier.

Declaration
public MagnifierShape Shape { get; set; }
Property Value
Type Description
MagnifierShape

One of the MagnifierShape values. The default is MagnifierShape.Circle.

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 appearance
		_gcMagnifierObj.Shape = MagnifierShape.Rectangle;
	}
}
Public Class GcMagnifierDemo
	Inherits Form
	Private _gcMagnifierObj As New GcMagnifier()

	Public Sub New()
		' Magnifier appearance
		_gcMagnifierObj.Shape = MagnifierShape.Rectangle
	End Sub
End Class