Changes by last author:

Added:
Use this template to document events. You can copy it's code from below for easy pasting.

----

= EventName =

== Returned Parameters ==

:n

::Usually the n variable is the number of the control for which the event was triggered. In a few cases it can represent something else. Describe what it repesents.

== Performs Control Action? ==

:Performs or doesn't perform the default control action (e.g. preview update). Or does it perform an action only for certain control types?

:The control action can be suppressed by using return true; instead of return false;.

== Description ==

:Describe the event here, including by what user action it is triggered etc.

== Example ==

<code>

OnCtl(n):{

if (n == 10 && e == FME_CLICKED){

Info ("The button was pressed.");

}

return false;

}

</code>

== Also see ==

:(RelatedEvent)?, (OtherEvent)?, (RelatedFunction)?

== Comments ==

:Everyone can add his comments about his experiences with this event here. Tips for using it are welcome, too.

----

RAW TEMPLATE CODE, FOR EASY COPY/PASTING

<code>

= EventName =

== Returned Parameters ==

:n

::specify what n represents

== Performs Control Action? ==

:specify.

:The control action can be suppressed by using return true; instead of return false;.

== Description ==

:specify.

== Example ==

== Also see ==

:(specify)?

== Comments ==

:Everyone can add his comments about his experiences with this event here. Tips for using it are welcome, too.

</code>