MonobjcMonobjc Documented Class Library
GetPeriodicDelayInterval Method (delay, interval)
NamespacesMonobjc.AppKitNSCellGetPeriodicDelayInterval(Single%, Single%)

Returns the initial delay and repeat values for continuous sending of action messages to target objects.

Original signature is '- (void)getPeriodicDelay:(float *)delay interval:(float *)interval'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void GetPeriodicDelayInterval(
	out float delay,
	out float interval
)
Public Overridable Sub GetPeriodicDelayInterval ( _
	<OutAttribute> ByRef delay As Single, _
	<OutAttribute> ByRef interval As Single _
)
public:
virtual void GetPeriodicDelayInterval(
	[OutAttribute] float% delay, 
	[OutAttribute] float% interval
)
Parameters
delay (Single%)
On input, a pointer to a floating-point variable. On output, the variable contains the current delay (measured in seconds) before messages are sent. This parameter must not be NULL.
interval (Single%)
On input, a pointer to a floating point variable. On output, the variable contains the interval (measured in seconds) at which messages are sent. This parameter must not be NULL.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)