Output (Dataset property): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→Syntax terms) |
||
Line 17: | Line 17: | ||
<td>A reference to an instance of a <var>Dataset</var> object. | <td>A reference to an instance of a <var>Dataset</var> object. | ||
</td></tr> | </td></tr> | ||
<tr><th> | <tr><th>newBoolean</th> | ||
<td>A variable to be used to set the <var class="term">dataset</var> object's output attribute. | <td>A variable to be used to set the <var class="term">dataset</var> object's output attribute. | ||
</td></tr> | </td></tr> |
Revision as of 22:31, 20 May 2011
Indicates whether this dataset is writeable (Dataset class)
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.
Syntax
%currentBoolean = dataset:Output dataset:Output = newBoolean
Syntax terms
%currentBoolean | A variable to receive the Boolean value that indicates whether or not the dataset object is an output dataset. |
---|---|
dataset | A reference to an instance of a Dataset object. |
newBoolean | A variable to be used to set the dataset object's output attribute. |
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.