INCLUDE: Difference between revisions

From Macros Wiki
Jump to navigationJump to search
ConnerO (talk | contribs)
New page: {{Command|syntax=INCLUDE <filename> |description=*DESCRPTION* |param1=<filename>|param1_desc={{filename}} }} ===Example=== :- INCLUDE Category:Language
 
MikeO (talk | contribs)
No edit summary
Line 1: Line 1:
{{Command|syntax=INCLUDE <filename>
{{Command|syntax=INCLUDE <filename>
|description=*DESCRPTION*
|description=Include the contents of another file in a macro.


|param1=<filename>|param1_desc={{filename}}
|param1=<filename>|param1_desc={{filename}}
Line 6: Line 6:


===Example===
===Example===
:- INCLUDE
:#INCLUDE "CommonCode.txt"


[[Category:Language]]
[[Category:Language]]

Revision as of 22:19, 26 July 2010

Command

INCLUDE <filename>


Include the contents of another file in a macro.

Parameters

<filename>
Filename as either text in double quotes, or a text variable.
If the filename does not contain full path information, then the file will be opened in the same folder as the macro.

Example

  1. INCLUDE "CommonCode.txt"