Returns by reference the delay and interval periods for a continuous button.
Original signature is '- (void)getPeriodicDelay:(float *)delay interval:(float *)interval'
Available in Mac OS X v10.0 and later.

C# | Visual Basic | Visual C++ |
Public Overridable Sub GetPeriodicDelayInterval ( _ <OutAttribute> ByRef delay As Single, _ <OutAttribute> ByRef interval As Single _ )
public: virtual void GetPeriodicDelayInterval( [OutAttribute] float% delay, [OutAttribute] float% interval )

- delay (Single%)
- On return, the amount of time (in seconds) the button will pause before starting to periodically send action messages to the target object. The default delay is taken from a user's default (60 seconds maximum). If the user hasn’t specified a default value, delay defaults to 0.4 seconds,
- interval (Single%)
- On return, the amount of time (in seconds) between each action message that is sent. The default interval is taken from a user's default (60 seconds maximum). If the user hasn’t specified a default value, interval defaults to 0.075 seconds.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)