[]
Gets or sets a value indicating the duration from finger press to magnifier popup in millisecond.
public int PopupDelay { get; set; }
Type | Description |
---|---|
int | A int value that represents the duration from finger press to magnifier popup in millisecond. The default is 500. |
The minimum value of this property is limited, The value cannot be less than 1.
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