//--------------------------------------------------------------------------- #ifndef SpreadSheetRLModifyH #define SpreadSheetRLModifyH //--------------------------------------------------------------------------- #include #include #include #include #include "cxSSCtrls.hpp" #include //--------------------------------------------------------------------------- class TControlAccess : public TControl { public: __property Caption; }; class TSpreadSheetRLModifyForm : public TForm { __published: // IDE-managed Components TButton *btnOk; TButton *btnCancel; TPanel *gpPanel; TRadioButton *rbShiftCol; TRadioButton *rbShiftRw; TRadioButton *rbRw; TRadioButton *rbCol; TcxLabelBevel *cxLB; void __fastcall FormKeyPress(TObject *Sender, char &Key); private: // User declarations TcxSSCellsModify FModifySheet; void __fastcall SetCaptions(AnsiString ACaptions[8]); public: // User declarations __fastcall TSpreadSheetRLModifyForm(TComponent* Owner); bool __fastcall Execute(TcxSSModifyType AModifySheet); __property TcxSSCellsModify Modify = {read = FModifySheet, write = FModifySheet}; }; //--------------------------------------------------------------------------- extern PACKAGE TSpreadSheetRLModifyForm *SpreadSheetRLModifyForm; //--------------------------------------------------------------------------- #endif