<CCSV>.Char.Remark

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > CSV > cCSV class > <cCSV> constructor > <cCSV> properties >

<CCSV>.Char.Remark

 

Description

 

Get/Set character used to determine remark line during <cCSV>.Load operations

 

Syntax

 

'---GET

sChar = <cCSV>.Char.Remark

 

'---SET

<cCSV>.Char.Remark = sChar

 

Returns

 

String, single remark character.

 

Remarks

 

Restrictions

 

Remark char must be 1 single char.

 

You need to set delimiter before a call to <cCSV>.Load.

 

See also

 

<cCSV>.Load

 

Examples

 

uses "CSV""console"

 

dim data as new cCSV

 

printl $("Remark now: '{data.Char.Remark}'")

 

data.Char.Remark = ";"

printl $("Remark after change: '{data.Char.Remark}'")

 

waitkey