C# Класс FlatFiles.IgnoredColumn

Represents a column that should be ignored when reading a document and used as a placeholder when writing a document.
Наследование: ColumnDefinition
Показать файл Открыть проект

Открытые методы

Метод Описание
Format ( object value ) : string

Returns null so nothing is written to the document.

IgnoredColumn ( ) : System

Initializes a new IgnoredColumn.

IgnoredColumn ( string columnName ) : System

Initializes a new IgnoredColumn with a header name.

Parse ( string value ) : object

Ignores the values that was parsed from the document.

Описание методов

Format() публичный Метод

Returns null so nothing is written to the document.
public Format ( object value ) : string
value object The value that needs written to the document.
Результат string

IgnoredColumn() публичный Метод

Initializes a new IgnoredColumn.
public IgnoredColumn ( ) : System
Результат System

IgnoredColumn() публичный Метод

Initializes a new IgnoredColumn with a header name.
public IgnoredColumn ( string columnName ) : System
columnName string
Результат System

Parse() публичный Метод

Ignores the values that was parsed from the document.
public Parse ( string value ) : object
value string The value that was parsed from the document.
Результат object