[]
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector)
Public Sub ExportToDelimitedFile(outPath As String, selector As RowSelectorEnum)
| Type | Name | Description |
|---|---|---|
| string | outPath | Specifies the file to which list rows are exported. |
| RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector, string delim)
Public Sub ExportToDelimitedFile(outPath As String, selector As RowSelectorEnum, delim As String)
| Type | Name | Description |
|---|---|---|
| string | outPath | Specifies the file to which list rows are exported. |
| RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
| string | delim | Specifies an optional delimiter string used to separate fields. |
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector, string delim, string prefix)
Public Sub ExportToDelimitedFile(outPath As String, selector As RowSelectorEnum, delim As String, prefix As String)
| Type | Name | Description |
|---|---|---|
| string | outPath | Specifies the file to which list rows are exported. |
| RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
| string | delim | Specifies an optional delimiter string used to separate fields. |
| string | prefix | Specifies an optional string used with suffix to surround each value. |
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector, string delim, string prefix, string suffix)
Public Sub ExportToDelimitedFile(outPath As String, selector As RowSelectorEnum, delim As String, prefix As String, suffix As String)
| Type | Name | Description |
|---|---|---|
| string | outPath | Specifies the file to which list rows are exported. |
| RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
| string | delim | Specifies an optional delimiter string used to separate fields. |
| string | prefix | Specifies an optional string used with suffix to surround each value. |
| string | suffix | Specifies an optional string used with prefix to surround each value. |
Exports the specified rows from the list to the specified file as delimited ASCII text.
public void ExportToDelimitedFile(string outPath, RowSelectorEnum selector, string delim, string prefix, string suffix, bool headers)
Public Sub ExportToDelimitedFile(outPath As String, selector As RowSelectorEnum, delim As String, prefix As String, suffix As String, headers As Boolean)
| Type | Name | Description |
|---|---|---|
| string | outPath | Specifies the file to which list rows are exported. |
| RowSelectorEnum | selector | Specifies an optional value that specifies the rows to be exported. |
| string | delim | Specifies an optional delimiter string used to separate fields. |
| string | prefix | Specifies an optional string used with suffix to surround each value. |
| string | suffix | Specifies an optional string used with prefix to surround each value. |
| bool | headers | Specifies whether the columns headers will be written to the file on the first line. |