Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3302498
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:51:29+00:00 2026-05-17T20:51:29+00:00

I need to know when the row/column property of a grid was changed in

  • 0

I need to know when the row/column property of a grid was changed in order to do some processing.
In TStringGrid Row property is

property Row: Longint read FCurrent.Y write SetRow;

But, unfortunately I cannot override the SetRow as it is private. SelectCell is not private BUT it is called BEFORE the new column and row attribute is set. The only solution will be to replace all calls to Row property with my own property

property MyRow: Longint read Row write SetMyRow;

but it is not the most elegant solution.
Any ideas?


Delphi 7, Win 7 32 bit

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T20:51:30+00:00Added an answer on May 17, 2026 at 8:51 pm

    I just had a look at the source of TStringGrid. The Row property is inherited from TCustomGrid (via TDrawGrid and TCustomDrawGrid), where it is defined as

    property Row: Longint read FCurrent.Y write SetRow;
    

    as you say. SetRow calls FocusCell whichs calls MoveCurrent. This one calls SelectCell. This is a virtual function, and although it is highly trivial in TCustomGrid, where it is defined as

    function TCustomGrid.SelectCell(ACol, ARow: Longint): Boolean;
    begin
      Result := True;
    end;
    

    in TCustomDrawGrid, we have

    function TCustomDrawGrid.SelectCell(ACol, ARow: Longint): Boolean;
    begin
      Result := True;
      if Assigned(FOnSelectCell) then FOnSelectCell(Self, ACol, ARow, Result);
    end;
    

    Hence, OnSelectCell is called every time Row or Col is changed, as Skamradt wrote in a comment.

    Yes, this event is called before the new cell is selected, but we have

    FOnSelectCell: TSelectCellEvent;
    

    where

    type
      TSelectCellEvent = procedure (Sender: TObject; ACol, ARow: Longint;
    var CanSelect: Boolean) of object;
    

    ACol and ARow contain the new “values-to-be”. You can even disallow the change of selected cell by setting CanSelect to false. Consequently, there is no need to override anything.

    (Also, you cannot override SetRow because it is not virtual. It is very possible to override private and protected members, but only virtual methods can be overridden.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a multidimensional data structure with a row and a column. Must be
I need to write an excel-like grid that can have a lot of cells
I need to know how to sum all the numbers of a column in
Need to know this so that i could send DTMF and that is going
Need to know which event triggered after text selection done in Apple iPad. It
I need to know how to change background of expanded list item when it
I need to know how to exclude files/folders from php generated zip. Here is
I need to know on a continuous basis when my UIScrollView is scrolling or
I need to know a couple of things, concerning IRC servers that I couldnt
I need to know how many instances of my process are running on a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.