Class Record
Represents the record.
Inheritance
System.Object
Record
Namespace: FastReport.Export.Dbf
Assembly: FastReport.dll
Syntax
public class Record
Constructors
Record()
Initializes a new instance of the Record class.
Declaration
public Record()
Properties
Count
Gets the count of a fields.
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Item[Int32]
Gets or sets the field with a specified index.
Declaration
public Record.Field this[int index] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Property Value
| Type | Description |
|---|---|
| Record.Field |
Size
Gets the size of a fields.
Declaration
public int Size { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Methods
Add(StringBuilder, Record.FieldType)
Adds the new item into a list of fields.
Declaration
public void Add(StringBuilder item, Record.FieldType type)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Text.StringBuilder | item | |
| Record.FieldType | type |
Clear()
Clears the list of fields.
Declaration
public void Clear()