Output (Dataset property)

From m204wiki
Revision as of 16:45, 20 May 2011 by JAL2 (talk | contribs)
Jump to navigation Jump to search

This Boolean property indicates whether or not the dataset is an output dataset, that is, whether it is to be written to or not. It is only settable while the object is in the Closed state. An attempt to set it while the dataset is not closed results in request cancellation.

Output syntax

%boolean = %dataset:output %dataset:output = %boolean

Syntax terms

%boolean A variable to receive the Boolean value that indicates whether or not

the dataset is an output dataset, or a variable to be used to set the dataset's output attribute.

%dataset A reference to an instance of a Dataset object.

Usage Notes

  • Output is a boolean value, that is, it must be True or False.
  • The initial value for Output is False. That is, by default, datasets are input datasets.