bb0aa2e2 a9a7 12c2 6759 1d696e07921a - iAJTin/iExportEngine GitHub Wiki
Additional header content
Gets or sets a value indicating whether show grid lines.
Namespace: iTin.Export.Model
Assembly: iTin.Export.Core (in iTin.Export.Core.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public YesNo ShowGridLines { get; set; }VB
Public Property ShowGridLines As YesNo
Get
SetType: YesNo
Yes if show grid lines.; otherwise, No. The default is Yes.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException | The value specified is outside the range of valid values. |
TEE Object Element Usage
<Table ShowGridLines="Yes|No" ...>
...
</Table>Compatibility table with native writers.
| Comma-Separated Values CsvWriter |
Tab-Separated Values TsvWriter |
SQL Script SqlScriptWriter |
XML Spreadsheet 2003 Spreadsheet2003TabularWriter |
|---|---|---|---|
| No has effect | No has effect | No has effect | X |
X
XML
<Table ShowGridLines="No">
...
</Table>C#
...
TableModel table = new TableModel
{
Name = "Sample name",
Alias = "Sample alias",
AutoFilter = YesNo.Yes,
Location = new[] { 2, 2 },
ShowGridLines = YesNo.No,
AutoFitColumns = YesNo.Yes,
} ;
...