Method | Description | |
---|---|---|
Close ( ) : void |
Closes current record and stream.
|
|
DbaseWriter ( string filename, |
Initializes a new instance of MapAround.IO.DbaseWriter
|
|
Write ( System.DateTime date ) : void |
Writes a datetime value.
|
|
Write ( IList columnValues, int RecNum ) : void |
Writes a row.
|
|
Write ( bool flag ) : void |
Writes a bool value.
|
|
Write ( byte number ) : void |
Writes a byte.
|
|
Write ( char c, int length ) : void |
Writes a character.
|
|
Write ( decimal number, int length, int decimalCount ) : void |
Writes a decimal value.
|
|
Write ( double number, int length, int decimalCount ) : void |
Writes a double value.
|
|
Write ( float number, int length, int decimalCount ) : void |
Writes a float value.
|
|
Write ( string text, int length ) : void |
Writes a string value.
|
|
WriteHeader ( ) : void |
Writes a header.
|
Method | Description | |
---|---|---|
IsIntegerType ( |
Indicates whether a specified type is an integer type.
|
|
IsRealType ( |
Indicates whether a specified type is a real type.
|
public DbaseWriter ( string filename, |
||
filename | string | File name |
dbaseHeader | A dBase file header | |
return | System |
public Write ( IList columnValues, int RecNum ) : void | ||
columnValues | IList | A list containing the column values |
RecNum | int | A number of record |
return | void |
public Write ( char c, int length ) : void | ||
c | char | The character to write. |
length | int | The length of the column to write in. Writes /// left justified, filling with spaces. |
return | void |
public Write ( decimal number, int length, int decimalCount ) : void | ||
number | decimal | A value to write |
length | int | A length |
decimalCount | int | A number of decimal characters |
return | void |
public Write ( double number, int length, int decimalCount ) : void | ||
number | double | |
length | int | |
decimalCount | int | |
return | void |
public Write ( float number, int length, int decimalCount ) : void | ||
number | float | |
length | int | |
decimalCount | int | |
return | void |
public Write ( string text, int length ) : void | ||
text | string | |
length | int | |
return | void |