DelphiDelphiVCLPythonPython GUIWindows

OnDrawCell Event in DelphiVCL Library

OnDrawCell event Occurs when a cell in the grid needs to be drawn. We write an OnDrawCell event handler to draw the contents of all the cells in the grid. Draw on the cell using the methods of the Canvas property. The Rect parameter indicates the location of the cell on the canvas. The Col and Row parameters indicate the column and row indexes of the cell that should be drawn. The State…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Understanding DelphiVCL.Application.BiDiMode

BiDiMode property or DelphiVCL.Application.BiDiMode is used to indicate the layout of the application when running under Middle Eastern versions of Windows. Use BiDiMode to specify the bi-directional mode for the application. The bi-directional mode controls the direction in which text appears (left-to-right or right-to-left), the placement of vertical scroll bars, and the default alignment…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.BeforeDestruction

BeforeDestruction method or DelphiVCL.Application.BeforeDestruction is used to respond before the first destructor executes. BeforeDestruction is called automatically before the object’s first destructor executes. Do not call it explicitly in your applications. The BeforeDestruction method implemented in TObject does nothing. Override this method when creating a class that…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.Assign

Assign method or DelphiVCL.Application.Assign is used to copy the contents of another similar object. Assign copies properties and other attributes of the specified Source object to the current object. Most objects override Assign to handle the assignment of properties from similar objects. When overriding Assign, call the inherited method if the destination object cannot handle the…
Read more