|
CrossTabEngineGenTab(String, String, String, String, String, XSpecProperties, XDisplayProperties) Method
|
The original string-based table generation method. The crosstab report results are always returned as a string.
There are two usage patterns for this method: (1) If the output format is not None, then the returned string
represents the generated report in the best way possible (2) If the output format is None, then the return value
is null and the internal state of the table data is prepared for later output in a chosen format.
Namespace: RCS.Carbon.TablesAssembly: RCS.Carbon.Tables (in RCS.Carbon.Tables.dll) Version: 9.1.0
Syntax public string GenTab(
string? name,
string top,
string side,
string? filter,
string? weight,
XSpecProperties? specProperties,
XDisplayProperties? displayProperties
)
Parameters
- name String
- The name of the report to appear in report heading. If the value null then a sequentially
incrementing name is silently used.
- top String
- TODO
- side String
- TODO
- filter String
- TODO
- weight String
- TODO
- specProperties XSpecProperties
- Report specification properties.
- displayProperties XDisplayProperties
- Report display properties. An important property of this class is
the XOutputFormat enumeration value of the Output.Format property, which influences the behaviour
of the crosstab report processing and specifies how the crosstab report is transformed into a string representation.
Return Value
StringA string representation of the crosstab report in the format specified in the
displayProperties.
If the output format of the report is
None then null returned because formatting of the report will be done in a
later step.
See Also