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

📄 customfunctionfrm.pas

📁 DevExpress公司出品的Borland Delphi和C++ Builder的控件(包含完整源代码)。 ExpressSpreadSheet:交叉数据表格控件。 一款Delphi
💻 PAS
字号:
unit CustomFunctionFrm;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  cxControls, cxSSheet;

type
  TCustomFunctionForm = class(TForm)
    cxSpreadSheet: TcxSpreadSheet;
    procedure FormCreate(Sender: TObject);
  private
  public
    { Public declarations }
  end;

var
  CustomFunctionForm: TCustomFunctionForm;

implementation

{$R *.DFM}


procedure TCustomFunctionForm.FormCreate(Sender: TObject);
var
  CellObject: TcxSSCellObject;
begin
  try
    cxSpreadSheet.LoadFromFile(ExtractFilePath(Application.ExeName) + '\CustomFunctionEx.xls');
    CellObject := cxSpreadSheet.Sheet.GetCellObject(1,4);
    try
      CellObject.Text := '=Area(B3:B4)';
    finally
      CellObject.Free;
    end;
  except
    on E: Exception do
      Application.ShowException(E);
  end;
end;

end.

⌨️ 快捷键说明

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