home *** CD-ROM | disk | FTP | other *** search
- ' ---------------------------------------------------------------------
- ' File Name: Layout_Defaults.tds
- ' Type : Application Script
- '
- ' Specifies default values for layout settings. Edit Information
- ' scripts can override these values by specifying them before putting
- ' the line:
- '
- ' @template = EditTemplate.Layout
- '
- ' THIS FILE IS NOT MEANT FOR EDITTING BY THE END USER. THESE SETTINGS
- ' ARE RELIED UPON BY MANY COMPONENTS AND CHANGING THEM IS A BAD IDEA.
- ' ---------------------------------------------------------------------
-
- [XPOS]
-
- Description = "Relative X Offset of Item"
-
- MaxValue = "UNDEFINED" ' maximum x offset, leave "undefined" for no max
- MinValue = "UNDEFINED" ' minimum x offset, leave "undefined" for no min
-
-
- [YPOS]
-
- Description = "Relative Y Offset of Item"
-
- MaxValue = "UNDEFINED" ' maximum y offset, leave "undefined" for no max
- MinValue = "UNDEFINED" ' minimum y offset, leave "undefined" for no min
-
-
- [WIDTH]
-
- Name = "Width"
- DisplayName = "Width"
- Description = "Width of Item"
-
- MaxPercentOfParent = 100 ' maximum percent of parent width that this element can occupy
- MinPercentOfParent = 0 ' minimum percent of parent width that this element has to occupy
-
- MaxValue = "UNDEFINED" ' maximum pixel value of width, leave "undefined" for no max
- MinValue = "UNDEFINED" ' minimum pixel value of width, leave "undefined" for no min
-
-
- [HEIGHT]
-
- Name = "Height"
- DisplayName = "Height"
- Description = "Height of Item"
-
- MaxPercentOfParent = 100 ' maximum percent of parent height that this element can occupy
- MinPercentOfParent = 0 ' minimum percent of parent height that this element has to occupy
-
- MaxValue = "UNDEFINED" ' maximum pixel value of height, leave "undefined" for no max
- MinValue = "UNDEFINED" ' minimum pixel value of height, leave "undefined" for no min
-
-
- [HORZALIGN]
-
- Name = "HorzAlign"
- DisplayName = "Horizontal Alignment"
- Description = "Horizontal Alignment"
- Choice1Name = "Left"
- Choice1Value = "left"
- Choice2Name = "Center"
- Choice2Value = "center"
- Choice3Name = "Right"
- Choice3Value = "right"
-
- [VERTALIGN]
-
- Name = "VertAlign"
- DisplayName = "Vertical Alignment"
- Description = "Vertical Alignment"
- Choice1Name = "Top"
- Choice1Value = "top"
- Choice2Name = "Center"
- Choice2Value = "center"
- Choice3Name = "Bottom"
- Choice3Value = "bottom"
-
- [DOCKSIDE]
-
- Name = "DockSide"
- DisplayName = "Dock Side"
- Description = "Select side which this element is docked to."
- Choice1Name = "Top"
- Choice1Value = "top"
- Choice2Name = "Bottom"
- Choice2Value = "bottom"
- Choice3Name = "Left"
- Choice3Value = "left"
- Choice3Name = "Right"
- Choice3Value = "right"
-