enterString
enterString( [?promptsl_promptList] [?forms_form] [?initProct_initProcName] [?doneProct_doneProcName] [?formProct_formProcName] [?alwaysMapg_alwaysMap] [?cmdNamet_cmdName] [?cursorx_cursor ] ) =>t_string
Description
Prompts you to enter a string.
The function terminates when you press a carriage return in the CIW.
Arguments
|
List of prompt strings to be displayed in the CIW. Only the first string is used. |
|
|
Options form created with |
|
|
Name of the SKILL function to be called immediately after the enterfunction is started and before any data entry. |
|
|
Name of the SKILL function to be called when the enterfunction is terminated. |
|
|
Name of the SKILL function to be called when the options form is displayed. |
|
|
Determines whether or not to immediately display the options form. |
|
|
Name you associate with the enterfunction. If the command name is set, it can be accessed with |
|
|
An integer argument that will default to an appropriate cursor. For example, |
|
Value Returned
Retrieve data through the callback procedure t_doneProcName instead of using the return value for this enterfunction.
Examples
enterString( ?prompts list( "Enter layer name." ))
The prompt “Enter layer name” is displayed on the prompt line. When you type a string followed by a carriage return, the enterfunction returns that string.
Related Topics
Return to top