JVCL Help:TJvTimeLineStyle

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Summary

Specifies the way a timeline view is drawn.

run\JvTimeLine.pas


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.

run\JvTimeLine.pas


Description

Use the TJvTimeLineStyle type to specify the way a timeline view is drawn.

run\JvTimeLine.pas


About

Navigation

no pages or subcategories

run\JvTimeLine.pas



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