JVCL Help:TJvTimeLineStyle
From Project JEDI Wiki
Jump to navigationJump to searchJVCL Help: TJvTimeLineStyle type
Search in JVCL Help
Search in all projectsSummary
Specifies the way a timeline view is drawn.
Pascal
run\JvTimeLine.pas
TJvTimeLineStyle = (
tlDefault,
tlOwnerDrawFixed,
tlOwnerDrawVariable
);
Members
Members | Description |
tlDefault | Each item has the same height as specified by ItemHeight. |
tlOwnerDrawFixed | Each time an item is displayed in a tlOwnerDrawFixed timeline control, the OnDrawItem event occurs. The event handler for OnDrawItem draws the specified item. The ItemHeight property determines the height of each of the items. |
tlOwnerDrawVariable | Each time an item is displayed in a tlOwnerDrawVariable timeline control, two events occur. The first is the OnMeasureItem event. The code for the OnMeasureItem handler can set the height of each item. Then the OnDrawItem event occurs. The code for the OnDrawItem handler draws each item in the timeline control using the size specified by the OnMeasureItem handler. |
Description
Use the TJvTimeLineStyle type to specify the way a timeline view is drawn.
About
no pages or subcategories
Contribute to this help topic
This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page