ExportToDelimitedFile(String,RowSelectorEnum,String,String,String,Boolean) Method
In This Topic
Exports the specified rows from the list to the specified file as delimited ASCII text.
Syntax
'Declaration
Public Overloads Sub ExportToDelimitedFile( _
ByVal As String, _
ByVal As RowSelectorEnum, _
ByVal As String, _
ByVal As String, _
ByVal As String, _
ByVal As Boolean _
)
public void ExportToDelimitedFile(
string ,
RowSelectorEnum ,
string ,
string ,
string ,
bool
)
Parameters
- outPath
- Specifies the file to which list rows are exported.
- selector
- Specifies an optional value that specifies the rows to be exported.
- delim
- Specifies an optional delimiter string used to separate fields.
- prefix
- Specifies an optional string used with suffix to surround each value.
- suffix
- Specifies an optional string used with prefix to surround each value.
- headers
- Specifies whether the columns headers will be written to the file on the first line.
See Also