⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 s2.tools.is2record.pas

📁 轉載的程序應用框架
💻 PAS
字号:
unit S2.Tools.IS2Record;

interface

uses
  Types, S2.Tools.TS2IntegerField, S2.Tools.TS2StringField,
  S2.Tools.TS2Field, S2.Tools.TS2DateField, S2.Tools.TS2DoubleField, S2.Tools.TS2MoneyField;

type
  IS2Record = interface
    function GetFieldCount: Integer;
    function GetIntegerField(const FieldName: string): TS2IntegerField;
    function GetStringField(const FieldName: string): TS2StringField;
    function GetDateField(const FieldName: string): TS2DateField;
    function GetDoubleField(const FieldName: string): TS2DoubleField;
    function GetMoneyField(const FieldName: string): TS2MoneyField;
    function GetFieldName(const Index: Integer): string;
    function GetField(const FieldName: string): TS2Field;
    procedure AddField(Field: TS2Field);
  end;

implementation

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -