home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 September / CHIP_CD_2004-09.iso / software / custombar / CustomBar_trial_100_setup.exe / Layout_Defaults.tds < prev    next >
Encoding:
Text File  |  2003-12-08  |  2.9 KB  |  94 lines

  1. ' ---------------------------------------------------------------------
  2. ' File Name: Layout_Defaults.tds
  3. ' Type     : Application Script
  4. '
  5. ' Specifies default values for layout settings. Edit Information 
  6. ' scripts can override these values by specifying them before putting
  7. ' the line:
  8. '
  9. '           @template = EditTemplate.Layout
  10. '
  11. ' THIS FILE IS NOT MEANT FOR EDITTING BY THE END USER. THESE SETTINGS
  12. ' ARE RELIED UPON BY MANY COMPONENTS AND CHANGING THEM IS A BAD IDEA.
  13. ' ---------------------------------------------------------------------
  14.  
  15. [XPOS]
  16.  
  17. Description          = "Relative X Offset of Item"
  18.  
  19. MaxValue             = "UNDEFINED"   ' maximum x offset, leave "undefined" for no max
  20. MinValue             = "UNDEFINED"   ' minimum x offset, leave "undefined" for no min
  21.  
  22.  
  23. [YPOS]
  24.  
  25. Description          = "Relative Y Offset of Item"
  26.  
  27. MaxValue             = "UNDEFINED"   ' maximum y offset, leave "undefined" for no max
  28. MinValue             = "UNDEFINED"   ' minimum y offset, leave "undefined" for no min
  29.  
  30.  
  31. [WIDTH]
  32.  
  33. Name                 = "Width"
  34. DisplayName          = "Width"
  35. Description          = "Width of Item"
  36.  
  37. MaxPercentOfParent   = 100           ' maximum percent of parent width that this element can occupy
  38. MinPercentOfParent   = 0             ' minimum percent of parent width that this element has to occupy
  39.  
  40. MaxValue             = "UNDEFINED"   ' maximum pixel value of width, leave "undefined" for no max
  41. MinValue             = "UNDEFINED"   ' minimum pixel value of width, leave "undefined" for no min
  42.  
  43.  
  44. [HEIGHT]
  45.  
  46. Name                 = "Height"
  47. DisplayName          = "Height"
  48. Description          = "Height of Item"
  49.  
  50. MaxPercentOfParent   = 100           ' maximum percent of parent height that this element can occupy
  51. MinPercentOfParent   = 0             ' minimum percent of parent height that this element has to occupy
  52.  
  53. MaxValue             = "UNDEFINED"   ' maximum pixel value of height, leave "undefined" for no max
  54. MinValue             = "UNDEFINED"   ' minimum pixel value of height, leave "undefined" for no min
  55.  
  56.  
  57. [HORZALIGN]
  58.  
  59. Name          = "HorzAlign"
  60. DisplayName   = "Horizontal Alignment"
  61. Description   = "Horizontal Alignment"
  62. Choice1Name   = "Left"
  63. Choice1Value  = "left"
  64. Choice2Name   = "Center"
  65. Choice2Value  = "center"
  66. Choice3Name   = "Right"
  67. Choice3Value  = "right"
  68.  
  69. [VERTALIGN]
  70.  
  71. Name          = "VertAlign"
  72. DisplayName   = "Vertical Alignment"
  73. Description   = "Vertical Alignment"
  74. Choice1Name   = "Top"
  75. Choice1Value  = "top"
  76. Choice2Name   = "Center"
  77. Choice2Value  = "center"
  78. Choice3Name   = "Bottom"
  79. Choice3Value  = "bottom"
  80.  
  81. [DOCKSIDE]
  82.  
  83. Name          = "DockSide"
  84. DisplayName   = "Dock Side"
  85. Description   = "Select side which this element is docked to."
  86. Choice1Name   = "Top"
  87. Choice1Value  = "top"
  88. Choice2Name   = "Bottom"
  89. Choice2Value  = "bottom"
  90. Choice3Name   = "Left"
  91. Choice3Value  = "left"
  92. Choice3Name   = "Right"
  93. Choice3Value  = "right"
  94.