How can I catch when a table is manually resized by the user? Is there some sort of OnTableResize or something like that I could hook up to?
Here's the scenario, the user creates a table:
Code
var
TableDlg: TWPTableDlg;
begin
...
try
TableDlg := TWPTableDlg.Create(FDoc);
TableDlg.EditBox := FControl;
TableDlg.Execute;
finally
FreeAndNil(TableDlg);
end;
end;
Display More
Then moves the mouse cursor on one of the lines that make up the table and moves it somewhere else, therefore resizing the table.
I'd like to be able to catch when that happens.
Thanks in advance.