CColorRef:ChoosePal
The ChoosePal method opens the Windows ChooseColor common dialog to interactively change the components of a CColorRef. This method opens the dialog in maximized mode showing the palette tool; to open in minimized mode, use Choose instead.
bSuccess = CColorRef:ChoosePal() where |
bSuccess is the returned success code. On success it is true, otherwise false.
This method returns true if the [OK] button was clicked on the Choose Color dialog. After clicking [OK], the CColorRef members are updated with the new color components.
The following script interactively changes the properties of a CColorRef:
|
-- create a new CColorRef |
|
-- set bright yellow |
|
-- if OK button clicked, show results |
|
-- print new color |
|
|