[]
        
(Showing Draft Content)

C1.Win.TouchToolKit.C1Magnify.PopupDelay

PopupDelay Property

PopupDelay

Gets or sets a value indicating the duration from finger press to magnifier popup in millisecond.

Declaration
public int PopupDelay { get; set; }
Property Value
Type Description
int

A int value that represents the duration from finger press to magnifier popup in millisecond. The default is 500.

Remarks

The minimum value of this property is limited, The value cannot be less than 1.

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()
	{
		// Set the duration from finger press to magnifier popup in millisecond
		_gcMagnifierObj.PopupDelay = 500;
	}
}
Public Class GcMagnifierDemo
	Inherits Form
	Private _gcMagnifierObj As New GcMagnifier()

	Public Sub New()
		' Set the duration from finger press to magnifier popup in millisecond
		_gcMagnifierObj.PopupDelay = 500
	End Sub
End Class