Guest User

Untitled

a guest
Mar 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. function options(*DIRECT)
  2. begin_com role(*EXTENDS #PRIM_PANL) displayposition(1) height(65) left(0) tabposition(1) top(0) width(500) layoutmanager(#MainPanelLayout)
  3.  
  4. * =====================================================================================
  5. * LAYOUT
  6. * =====================================================================================
  7. define_com class(#PRIM_TBLO) name(#MainPanelLayout)
  8. define_com class(#PRIM_TBLO.Row) name(#LayoutRow1) displayposition(1) parent(#MainPanelLayout)
  9. define_com class(#PRIM_TBLO.Column) name(#LayoutColumn1) displayposition(1) parent(#MainPanelLayout)
  10. define_com class(#PRIM_TBLO.Item) name(#LayoutItem1) alignment(TopLeft) column(#LayoutColumn1) manage(#HeaderLabel) parent(#MainPanelLayout) row(#LayoutRow1) flow(Down)
  11.  
  12. * =====================================================================================
  13. * UI COMPONENTS
  14. * =====================================================================================
  15. define_com class(#PRIM_LABL) name(#HeaderLabel) caption('Tour Of Heroes') displayposition(1) ellipses(Word) height(65) left(0) parent(#COM_OWNER) tabposition(1) tabstop(False) top(0) verticalalignment(Center) width(500) themedrawstyle('Title')
  16.  
  17. end_com
Add Comment
Please, Sign In to add comment