Skip to content

bb0aa2e2 a9a7 12c2 6759 1d696e07921a

Fernando Garcia edited this page May 8, 2018 · 1 revision

TableModel.ShowGridLines Property

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)

Syntax

C#

public YesNo ShowGridLines { get; set; }

VB

Public Property ShowGridLines As YesNo
	Get
	Set

Property Value

Type: YesNo
Yes if show grid lines.; otherwise, No. The default is Yes.

Exceptions

 

Exception Condition
InvalidEnumArgumentException The value specified is outside the range of valid values.

Remarks

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

Examples

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,
} ;
...

See Also

Reference

TableModel Class
iTin.Export.Model Namespace

Clone this wiki locally