Difference between revisions of "VS:VM MoveToLayer"

From VectorMEP
Jump to navigation Jump to search
m
m
Line 18: Line 18:
  
 
== Example ==
 
== Example ==
<vwDoc><pre>
+
<vwDoc>
 
<syntaxhighlight lang="pascal" line = "line">
 
<syntaxhighlight lang="pascal" line = "line">
 
PROCEDURE Example;
 
PROCEDURE Example;
Line 30: Line 30:
 
RUN(Example);
 
RUN(Example);
 
</syntaxhighlight>
 
</syntaxhighlight>
</pre></vwDoc>
+
</vwDoc>
  
 
== Version ==
 
== Version ==
 
Availability: from VectorMEP 2021
 
Availability: from VectorMEP 2021
 
[[Category:VS Function Reference:Object Editing]]
 
[[Category:VS Function Reference:Object Editing]]

Revision as of 07:53, 16 November 2020


Description

<font color="blue">def</font> vs.AlertQuestion(question, advice, defaultButton, OKOverrideText, CancelOverrideText, customButtonAText, customButtonBText):
    <font color="blue">return</font> INTEGER

Parameters

question STRING The question to display
advice STRING The text to be added in a smaller font under the main information/message
defaultButton INTEGER Specifies which button is to be made the default
OKOverrideText STRING Specifies a string to use in overriding the 'OK' string
CancelOverrideText STRING Specifies a string to use in overriding the 'Cancel' string
customButtonAText STRING Specifies a string to use for an optional custom button A
customButtonBText STRING Specifies a string to use for a second optional custom button B

Return Value

Remarks

Example

<vwDoc>

1 PROCEDURE Example;
2 BEGIN
3 AlrtDialog('AlrtDialog');
4 AlertInform('AlertInform', 'advice', FALSE);
5 AlertCritical('AlertCritical', 'advice');
6 Message(YNDialog('YNDialog'));
7 Message(AlertQuestion('question', 'advice', 1, 'ok', 'cancel', 'a', 'b'));
8 END;
9 RUN(Example);

</vwDoc>

Version

Availability: from VectorMEP 2021