Write (Method)

Applies To:

Console

Description:

Prints the output text specified by the OutputData parameter to the Console window.

Note:

The Console.Write() object model syntax is not supported in an Interactive Reporting document to be deployed in EPM Workspace.

Syntax:

Expression.Write(OutputData As Value)

Expression Required:

An expression that returns a Console object

Example:

This example shows how to print the names of Interactive Reporting document file sections on a single line:

Console.Write(ActiveDocument.Name +"'s sections are: ")
for (j=1; j < ActiveDocument.Sections.Count; j++)
    Console.Write(ActiveDocument.Sections[j].Name + ", ")