Skip to content

c3b0ee75 4161 750b 9d0a d93c9ac1f099

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

TableModel.AutoFilter Property

Additional header content

Gets or sets a value indicating whether displays the autofilter.

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 AutoFilter { get; set; }

VB

Public Property AutoFilter As YesNo
	Get
	Set

Property Value

Type: YesNo
Yes if displays the autofilter; otherwise, No. The default is No.

Exceptions

 

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

Remarks

TEE Object Element Usage

<Table AutoFilter="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 AutoFilter="Yes">
...
</Table>

C#

...
TableModel table = new TableModel
{
Name = "Sample name",
Alias = "Sample alias",
AutoFilter = YesNo.Yes,
Location = new[] { 2, 2 },
AutoFitColumns = YesNo.Yes,
} ;
...

See Also

Reference

TableModel Class
iTin.Export.Model Namespace

Clone this wiki locally