Difference between revisions of "PrintInteger"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (1 revision: Importing auto-generated function articles)
(looks okay, removing tag)
 
(2 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=

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