Search
CellAnnotation.AutomaticDelay Property
See Also
 






Gets or sets the automatic delay for the annotation.

Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms

 Syntax

C#  Copy Code

public int AutomaticDelay { get; set; }

Visual Basic  Copy Code

Public Property AutomaticDelay As Integer

 Property Value

An integer value. The default is the value of the SystemInformation.DoubleClickTime property.

 Remarks

The AutomaticDelay property enables you to set a single delay value, which is then used to initialize the values of the AutoPopDelay, InitialDelay and ReshowDelay properties as follows:

  • AutoPopDelay - 10 times the AutomaticDelay property value.
  • InitialDelay - equal to the AutomaticDelay property value.
  • ReshowDelay - 1/5 of the AutomaticDelay property value.

 See Also