featurechild.h

来自「DevExpress公司出品的Borland Delphi和C++ Builde」· C头文件 代码 · 共 38 行

H
38
字号
//---------------------------------------------------------------------------

#ifndef FeatureChildH
#define FeatureChildH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "cxControls.hpp"
#include "cxSSheet.hpp"
//---------------------------------------------------------------------------
class TFeatureChildForm : public TForm
{
__published:	// IDE-managed Components
  TcxSpreadSheetBook *cxSpreadSheetBook;
  void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  void __fastcall FormActivate(TObject *Sender);
  void __fastcall FormCreate(TObject *Sender);
  void __fastcall cxSpreadSheetBookSheetPopupMenu(TObject *Sender, int X,
          int Y);
  void __fastcall cxSpreadSheetBookEditing(TcxSSBookSheet *Sender,
          const int ACol, const int ARow, bool &CanEdit);
  void __fastcall cxSpreadSheetBookEndEdit(TObject *Sender);
        void __fastcall cxSpreadSheetBookContextPopup(TObject *Sender,
          TPoint &MousePos, bool &Handled);
private:	// User declarations
  bool FIsEditorMode;
public:		// User declarations
  __fastcall TFeatureChildForm(TComponent* Owner);
  void __fastcall SetSelection();
  __property bool IsEditorMode = {read = FIsEditorMode};
};
//---------------------------------------------------------------------------
extern PACKAGE TFeatureChildForm *FeatureChildForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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