Older Newer
Wed, 19 Mar 2003 15:59:47 . . . . SyneRyder


Changes by last author:

Added:
= MODIFY =

== Syntax ==

:ctl[n]: MODIFY(Class Specific Properties), Other Properties

== Description ==

:The class MODIFY helps you change certain properties of a user control without touching the other properties. This is useful for modifying predefined user controls such as the OK, Cancel, Logo or Edit pushbuttons.

== Example ==

<code>

ctl[CTL_OK]: MODIFY, "Apply" //changes Text property from OK to Apply

ctl[CTL_EDIT]: MODIFY, Pos=(200,20), Size=(30,30) //repositions and resizes Edit button

</code>

== Also see ==

:NONE