Difference between revisions of "PrintInteger"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Generated by Sunjammer's Dragon Age Script Paser)
(looks okay, removing tag)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Generated}}
 
 
{{dafunction
 
{{dafunction
 
|name=PrintInteger
 
|name=PrintInteger
Line 6: Line 5:
 
|param1name=nInteger
 
|param1name=nInteger
 
|param1desc=The integer value to print out to the log
 
|param1desc=The integer value to print out to the log
 +
|param1default=
 
|param2type=int
 
|param2type=int
 
|param2name=bPrepend
 
|param2name=bPrepend
 
|param2desc=Specifies if the type of value should be prepended on to the log string
 
|param2desc=Specifies if the type of value should be prepended on to the log string
 +
|param2default=FALSE
 
|returntype=void
 
|returntype=void
 
|returndesc=
 
|returndesc=
Line 28: Line 29:
 
== See also ==
 
== See also ==
 
<!-- This section contains links to articles, functions or constant groups. -->
 
<!-- This section contains links to articles, functions or constant groups. -->
[[PrintFloat]] [[PrintString]] [[PrintObject]] [[PrintVector]] [[PrintToLog]]  
+
[[PrintFloat]], [[PrintString]], [[PrintObject]], [[PrintVector]], [[PrintToLog]]
[[Category:]]Print & Log Functions
+
[[Category: Print & log functions]]

Latest revision as of 21:16, 2 March 2010

Prints an integer to the log file.

void PrintInteger(
int nInteger,
int bPrepend = FALSE
);
Parameters:
nInteger
The integer value to print out to the log
bPrepend
Specifies if the type of value should be prepended on to the log string
Returns:

Nothing.

Source:

script.ldf

Description

Prints the integer nInteger to the log file. If bPrepend is TRUE, then 'PRINTINTEGER' will be prepended onto the text outputted to the log file.


See also

PrintFloat, PrintString, PrintObject, PrintVector, PrintToLog