Difference between revisions of "AGIWiki/load.view"

Jump to navigation Jump to search
36 bytes added ,  15:15, 25 October 2018
m
Text replacement - "</source>" to "</syntaxhighlight>"
(Created page with "__NOTOC__ {{AGIWiki}} {{AGIWiki/Object and View commands}} The load.view and load.view.v commands load a view resource into memory. A view must be loaded before it can be assi...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
Line 31: Line 31:
== Example ==
== Example ==


<source lang="cpp">
<syntaxhighlight lang="cpp">
//The following code loads VIEW.025 into memory using load.view:
//The following code loads VIEW.025 into memory using load.view:
load.view(25);
load.view(25);
</source>
</syntaxhighlight>


<source lang="cpp">
<syntaxhighlight lang="cpp">
//The following code uses the indirect command load.view.v to do the same thing:
//The following code uses the indirect command load.view.v to do the same thing:
v195 = 25;
v195 = 25;
load.view.v(v195);
load.view.v(v195);
</source>
</syntaxhighlight>


== Related ==
== Related ==
TrustedUser
2,147

edits

Navigation menu