Writes the specified message to the console.

[VBScript]
Public Sub Message( _
   ByVal type As HpMessageType, _
   ByVal message As String _
)
[JScript]
public function Message(
   type : HpMessageType,
   message : String
);

Parameters

type
The message category.
message
The message to display.

Remarks

Call this method to display a message in the console window. Depending on the message type, the message is prefixed with a string indicating the message category.

See Also

Console Object | Console Members | HelpProducer Namespace