home *** CD-ROM | disk | FTP | other *** search
/ Chip: 25 Years Anniversary / CHIP_25Jahre_Jubilaeum.iso / downloads / 401065 / WPO11 / Data1.cab / _39999BDF04C947F5BA8D61BF547FCBD6 < prev    next >
Text File  |  2003-03-07  |  104KB  |  4,119 lines

  1. Using properties
  2.  
  3. Most objects in Quattro Pro have properties. For example, you can apply the Bold property to a cell, or the Name property to a sheet. You can use the @PROPERTY function or a Property macro command to automate the setting or viewing of properties. When you use the @PROPERTY function or a Property macro command, you need to use the correct syntax to view or change the values of the properties of an object. For further information, see Understanding syntax, Object precedence, and Identifying objects.
  4.  
  5.  
  6.  
  7. To display or change the property settings of an object:
  8.  
  9.   @PROPERTY(Object.Property)
  10.   
  11.   {GETOBJECTPROPERTY Cell, Object.Property}-see Quattro Pro Macros Help
  12.   
  13.   {SETOBJECTPROPERTY Object.Property, Value}-see Quattro Pro Macros Help
  14.   
  15.   {GETPROPERTY Cell, Property}-see Quattro Pro Macros Help
  16.   
  17.   {SETPROPERTY Property, Value}-see Quattro Pro Macros Help
  18.   
  19.  
  20.  
  21. To display the syntax for specific objects:
  22.  
  23.   Active Object properties
  24.   
  25.   Common Chart Object properties
  26.   
  27.   Drawn Chart Object properties
  28.   
  29.   Fixed Chart Object properties
  30.   
  31.   Common properties
  32.   
  33.   Dialog Control properties
  34.   
  35.   Menu Item properties
  36.   
  37.   Notebook Object properties
  38.   
  39.   Objects Sheet Icon properties
  40.   
  41. Understanding syntax
  42.  
  43. The tables in this section can consist of the following columns:
  44.  
  45. Property column - lists the objects and their properties.
  46.  
  47. Argument column - shows the correct name of the property to use in the @PROPERTY function or a Property macro command.
  48.  
  49. Syntax column - shows the syntax of the property settings. Italicized items in the Syntax column describe the type of data returned; items in normal type are entered (when setting a property). If vertical bars (|) separate items, then only those items are returned or allowed in the property. For example, "Both | Window | Panel | None" means that the property setting is either Both, Window, Panel, or None; you can enter only one of these items to set the property. Another example is Precision | Type, which indicates that either the type or precision setting is listed in that position. Items in angle brackets (<>) are optional.
  50.  
  51. Object precedence
  52.  
  53. If a situation arises where a property command could affect multiple objects, the object highest on the following list is identified:
  54.  
  55. 1    Dialog box
  56.  
  57. 2    Chart
  58.  
  59. 3    Floating object
  60.  
  61. 4    Named cell
  62.  
  63. Notes
  64.  
  65.   A property command could affect multiple objects if the objects have the same name.
  66.   
  67.   When the Objects sheet is active, you cannot identify a dialog box or chart. The icon representing the dialog box or chart is identified instead.
  68.   
  69. Identifying objects
  70.  
  71. To identify an object, use the following Syntax:
  72.  
  73.  
  74.  
  75. Object    Syntax    Example    Note
  76.  
  77. Cell or Cells    [NBName]BlockAddress    A:A23    [NBName] is optional
  78.  
  79. Chart    [NBName]ChartName    Chart1    [NBName] is optional.
  80.  
  81. Chart object    [NBName]ChartName:ObjName        [NBName] is optional. ChartName: is not needed if the chart window containing the object is active.
  82.  
  83. Chart icon    ChartName        Chart icons can only be identified when the Objects sheet is selected.
  84.  
  85. Dialog box    [NBName]DialogName    Dialog1    [NBName] is optional.
  86.  
  87. Dialog control    [NBName]DialogName:ObjName    Dialog1:Bitmap1    [NBName] is optional. DialogName: is not needed if the dialog box containing the control is active.
  88.  
  89. Dialog icon    DialogName        Dialog icons can only be identified when the Objects sheet is selected.
  90.  
  91. Floating object    [NBName]Sheet:ObjName        [NBName] and Page: are optional.
  92.  
  93. Menu item    Menupath    /Edit/Paste special    To identify a menu item, enter its path separated by forward slashes (/)
  94.  
  95. Notebook    [NBName]        You can change properties of the active notebook using Active_Notebook.Property.
  96.  
  97. Sheet    Active_Page        You can only read or set properties of the active sheet using this syntax.
  98.  
  99. Toolbar    [ToolbarName]    Chart and Drawing Tools    
  100.  
  101. Toolbar control    [ToolbarName]ObjName        [ToolbarName] is not needed if the Toolbar containing the control is active.
  102.  
  103. Cell Property
  104.  
  105. The following examples show how you can manipulate the property of a cell: the Numeric Format property of the cells A:A23.
  106.  
  107. Example 1 (the setting is stored in B:C32)
  108.  
  109. {GETOBJECTPROPERTY B:C32,"A:A23.Numeric_Format"}
  110.  
  111. Example 2 (the link command formats A:A23 as General)
  112.  
  113. ON Init SET General TO A:A23.Numeric_Format
  114.  
  115. @PROPERTY("A:A23.Numeric_Format")
  116.  
  117. Example 3 (formats A:A23 as Currency with 2 decimal places)
  118.  
  119. SETOBJECTPROPERTY "A:A23.Numeric_Format","Currency,2"}
  120.  
  121. Control Property 
  122.  
  123. The following examples show how you can manipulate the property of an object: the Disabled property of a bitmap button named Bitmap1 in a dialog box named Dialog1.
  124.  
  125. Example 1 (the setting is stored in B:C32)
  126.  
  127. {GETOBJECTPROPERTY B:C32,"Dialog1:Bitmap1.Disabled"}
  128.  
  129. Example 2 (the link command disables the button)
  130.  
  131. ON Init SET Yes TO Dialog1:Bitmap1.Disabled
  132.  
  133. Example 3 (enables the button.)
  134.  
  135. @PROPERTY("Dialog1:Bitmap1.Disabled")
  136.  
  137. {SETOBJECTPROPERTY "Dialog1:Bitmap1.Disabled","No"}
  138.  
  139. Note
  140.  
  141.   {SETPROPERTY} and {GETPROPERTY} work on the selected object, and just take the name of the property to manipulate.
  142.   
  143. Common properties
  144.  
  145. Many objects contain the same property. The following are some of the more common properties:
  146.  
  147. Color
  148.  
  149. Dimension
  150.  
  151. Font
  152.  
  153. Color property
  154.  
  155. Syntax
  156.  
  157. Red, Green, Blue
  158.  
  159. Description
  160.  
  161. Each component is an integer from 0 to 255; 0 indicates that none of the hue is present; 255 indicates maximum saturation for the hue. Black is 0,0,0 and white is 255,255,255.
  162.  
  163. You can also retrieve each of these color components individually. The following table lists the argument required to read or set an individual component of a Color property. Item is the word appearing in property dialogs and property tables that describes what color is being manipulated.
  164.  
  165. The following table lists properties and syntax for Color:
  166.  
  167.  
  168.  
  169. Property    Syntax    Description
  170.  
  171. Item_Color    Item_Color;Red, Green, Blue    The amount of red, green, and blue in the color
  172.  
  173. Red    Item_Color.Red    The amount of red in the color
  174.  
  175. Green    Item_Color.Green    The amount of green in the color
  176.  
  177. Blue    Item_Color.Blue    The amount of blue in the color
  178.  
  179. Dimension property
  180.  
  181. Syntax
  182.  
  183. X, Y, Width, Height
  184.  
  185. Description
  186.  
  187. Lets you specify the precise size and position of an object relative to the window containing it.
  188.  
  189. You can read or set an individual option of the Dimension property by using the following arguments:
  190.  
  191. The following table lists properties and syntax for the Dimension:
  192.  
  193.  
  194.  
  195. Property    Syntax    Description
  196.  
  197. Dimension    Dimension X, Y, Width, Height    
  198.  
  199. X Pos    Dimension.X    The distance in pixels between the left edge of the object and the left side of the window
  200.  
  201. Y Pos    Dimension.Y    The distance in pixels between the top edge of the object and the bottom edge of the window's title bar
  202.  
  203. Width    Dimension.Width    The width of the object in pixels
  204.  
  205. Height    Dimension.Height    The height of the object in pixels
  206.  
  207. Note
  208.  
  209.   For drawn objects, measure Y Pos from the top of the chart background.
  210.   
  211. Font property
  212.  
  213. Syntax
  214.  
  215. Typeface, PointSize, Bold, Italic, Underline, Strikeout
  216.  
  217. Description
  218.  
  219. Lets you specify the font attributes of the object. You can read or set an individual option of a Font property by using the following arguments.
  220.  
  221. The following table lists properties, arguments, and syntax for the Font:
  222.  
  223.  
  224.  
  225. Property    Argument    Syntax
  226.  
  227. Item Font    Item_Font    Typeface, PointSize, Bold, Italic, Underline, Strikeout
  228.  
  229. Typeface    Item_Font.Typeface    Typeface
  230.  
  231. Point Size    Item_Font.Point_Size    PointSize
  232.  
  233. Bold    Item_Font.Bold    Yes | No
  234.  
  235. Italic    Item_Font.Italic    Yes | No
  236.  
  237. Underline    Item_Font.Underline    Yes | No
  238.  
  239. Strikeout    Item_Font.Strikeout    Yes | No
  240.  
  241.  
  242.  
  243. Example
  244.  
  245. {Setproperty Cell_Font;"Arial;10;No;No;No;Yes"}
  246.  
  247. Common Chart Object properties
  248.  
  249. Two properties are found in many chart objects:
  250.  
  251. Fill Settings
  252.  
  253. Text Settings
  254.  
  255. Fill Settings property
  256.  
  257. Syntax
  258.  
  259. Fill_Settings;None | Solid | Pattern | Wash | Bitmap, Type, Color1, Color2
  260.  
  261. Description
  262.  
  263. Lets you specify the color and pattern of objects. If Fill Style is None, leave the Type field empty
  264.  
  265. The following table lists properties and syntax for the Fill Settings:
  266.  
  267.  
  268.  
  269. Property    Syntax
  270.  
  271. Fill Settings    Fill_Settings;None | Solid | Pattern | Wash | Bitmap, Type, Color1, Color2
  272.  
  273. None    Fill_Settings;None
  274.  
  275. Solid    Fill_Settings;Solid,Solid
  276.  
  277. Pattern    Fill_Settings;Pattern,Solid
  278.  
  279.     Fill_Settings;Pattern,"Tight Dots"
  280.  
  281.     Fill_Settings;Pattern,"Thick Stripes Down"
  282.  
  283.     Fill_Settings;Pattern,"Thick Stripes Up"
  284.  
  285.     Fill_Settings;Pattern,"Vertical Lines"
  286.  
  287.     Fill_Settings;Pattern,"Horizontal Lines"
  288.  
  289.     Fill_Settings;Pattern,"Horizontal Grid"
  290.  
  291.     Fill_Settings;Pattern,"Hatch 1"
  292.  
  293.     Fill_Settings;Pattern,"Diagonal 1"
  294.  
  295.     Fill_Settings;;Pattern,"Diagonal 2"
  296.  
  297.     Fill_Settings;Pattern,Vertical
  298.  
  299.     Fill_Settings;Pattern,Horizontal
  300.  
  301.     Fill_Settings;Pattern,"Loose Dots"
  302.  
  303.     Fill_Settings;Pattern,"Medium Dots"
  304.  
  305.     Fill_Settings;Pattern,Pepita
  306.  
  307.     Fill_Settings;Pattern,Scales
  308.  
  309.     Fill_Settings;Pattern,"Diagonal Grid"
  310.  
  311.     Fill_Settings;Pattern,"Hatch 2"
  312.  
  313.     Fill_Settings;Pattern,"Fuzzy Stripes Down"
  314.  
  315.     Fill_Settings;Pattern,Weave
  316.  
  317.     Fill_Settings;Pattern,"Zig Zag"
  318.  
  319.     Fill_Settings;Pattern,"Staggered Dashes"
  320.  
  321.     Fill_Settings;Pattern,Lattice
  322.  
  323.     Fill_Settings;Pattern,Bricks
  324.  
  325. Wash    Fill_Settings;Wash,"Left to right"
  326.  
  327.     Fill_Settings Wash,"Right to left"
  328.  
  329.     Fill_Settings;Wash,"Center to left and right"
  330.  
  331.     Fill_Settings;Wash,"Top to bottom"
  332.  
  333.     Fill_Settings;wash,"Bottom to top"
  334.  
  335.     Fill_Settings;Wash,"Center to top and bottom"
  336.  
  337. Bitmap    Fill_Settings;Bitmap,"Crop to fit" | "Shrink to fit" | "Tile to fit" | "3-D perspective",BitmapName
  338.  
  339. Color1    Red, Blue, Green
  340.  
  341. Color2    Red, Blue, Green
  342.  
  343.  
  344.  
  345. Example
  346.  
  347. {SETPROPERTY Fill_Settings;"Pattern;Solid;;0;0;128;255;255;255"}
  348.  
  349. Text Settings property
  350.  
  351. Syntax
  352.  
  353. Text_Settings;Solid|Wash|Bitmap|3-D, WashType, BitmapName,Shadow, Color1, Color2
  354.  
  355. Description
  356.  
  357. Lets you specify whether chart text is solid, a washed tone, or a bitmap. If the style is Solid or Wash, leave the BitmapName field empty. Shadow indicates whether text should have a drop shadow (Yes) or no shadow (No).
  358.  
  359. The following table lists properties and syntax for the Text Settings:
  360.  
  361.  
  362.  
  363. Property    Syntax
  364.  
  365. Text Settings    Text_Settings;Solid|Wash|Bitmap|3-D, WashType, BitmapName,Shadow, Color1, Color2
  366.  
  367. Solid    Text_Settings;Solid,None,,Shadow
  368.  
  369. Wash    Text_Settings;Wash,"Left to right",,Shadow
  370.  
  371.     Text_Settings;Wash,"Right to left",,Shadow
  372.  
  373.     Text_Settings;Wash,"Center to left and right",,Shadow
  374.  
  375.     Text_Settings;Wash,"Top to bottom",, Shadow
  376.  
  377.     Text_Settings;Wash,"Bottom to top",,Shadow
  378.  
  379.     Text_Settings;Wash,"Center to top and bottom",,Shadow
  380.  
  381. Bitmap    Text_Settings;Bitmap,"Crop to fit"|"Shrink to fit",BitmapName,Shadow
  382.  
  383. 3-D    Text_Settings;3-D, Above Left | Above Center | Above Right | Level Left | Level Center | Level Right | Bottom Left | Bottom Center | Bottom Right,,,PerspectiveAmount(0-100), Shaded?(Yes | No)
  384.  
  385. Color 1    Red, Blue, Green
  386.  
  387. Color 2    Red, Blue, Green
  388.  
  389. Active Object properties
  390.  
  391. Syntax
  392.  
  393. If you do not know the exact name of the active object you can still view the property settings:
  394.  
  395.  
  396.  
  397. Active object    
  398.  
  399. The selected cells.    Active_Block
  400.  
  401. The active notebook window    Active_Notebook
  402.  
  403. The active notebook sheet    Active_Page
  404.  
  405.  
  406.  
  407. Description
  408.  
  409. The active object is the object that you are currently using.
  410.  
  411. The following table lists properties, arguments, and syntax for the Active Object object:
  412.  
  413.  
  414.  
  415. Property    Syntax
  416.  
  417. Active Selection    See Cell in topic Notebook Object Properties for a list of cell properties
  418.  
  419. Active Notebook    See Notebook in topic Notebook Object Properties for a list of notebook properties
  420.  
  421. Active Sheet    
  422.  
  423. Conditional Color    Conditional_Color;Enable, SmallVal, GreatVal, BelColor, Normal, AboveCol, ERRCol
  424.  
  425. Above Normal Color    Conditional_Color.Above_Normal_Color;0-15
  426.  
  427. Below Normal Color    Conditional_Color.Below_Normal_Color;0-15
  428.  
  429. Enable    Conditional_Color.Enable;Yes | No
  430.  
  431. ERR Color    Conditional_Color.ERR_Color;0-15
  432.  
  433. Greatest Normal Value    Conditional_Color.Greatest_Normal_Value;GreatVa
  434.  
  435. Normal Color    Conditional_Color.Normal_Color;0-15
  436.  
  437. Smallest Normal Value    Conditional_Color.Smallest_Normal_Value;SmallVal
  438.  
  439. Default Width    Default_Width;WidthInTwips
  440.  
  441. Display    Display;DisplayZeros?(Yes | No), RowBorders?(Yes | No), ColBorders?(Yes | No), HorzGridLines?(Yes | No), VertGridLines?(Yes | No)
  442.  
  443. Border Options    Display.Borders;RowBorders?(Yes | No), ColBorders?(Yes | No)
  444.  
  445. Column Borders    Display.Borders.Column_Borde rs;Yes | No
  446.  
  447. Display Zeros    Display.Display_Zeros;Yes | No
  448.  
  449. Grid Lines    Display.Grid_Lines;HorzGridLines?(Yes | No), VertGridLines?(Yes | No)
  450.  
  451. Horizontal Grid Lines    Display.Grid_Lines.Horizontal;Yes | No
  452.  
  453. Row Borders    Display.Borders.Row_Borders;Yes | No
  454.  
  455. Vertical Grid Lines    Display.Grid_Lines.Vertical;Yes | No
  456.  
  457. Name    Name;Name
  458.  
  459. Protection    Protection;CellLocking?(Yes | No), ObjectLocking?(Yes | No)
  460.  
  461. Enable Cell Locking    Protection.Cells;Yes | No
  462.  
  463. Enable Object Locking    Protection.Objects;Yes | No
  464.  
  465. Tab Color    Tab_Color
  466.  
  467. Zoom Factor    Zoom_Factor;10-400
  468.  
  469. Menu Item properties
  470.  
  471. Syntax
  472.  
  473. ID Syntax    Description
  474.  
  475. /<-    The first item on the menu bar. You can include this name at the end of a menu path (for example, /File/<- identifies the first item on the File menu).
  476.  
  477. /->    The last item on the menu bar. You can include this name at the end of a menu path (for example, /Tools/Macro/-> identifies the last item on the Tools  Macro menu).
  478.  
  479. /n    The nth item on the menu bar. You can include this name at the end of a menu path (for example, /Help/2 identifies the second item on the Help menu).
  480.  
  481.  
  482.  
  483. Description
  484.  
  485. You can manipulate the properties for each item on the menu bar. To identify an item on the menu bar, enter its path separated by forward slashes (/). Do not include ellipses (...).The following table lists some special ways to identify menu items.
  486.  
  487. The following table lists properties and syntax for the Menu Item object:
  488.  
  489.  
  490.  
  491. Property    Syntax
  492.  
  493. Menu Item    Menupath.Property
  494.  
  495.  Checked (H)    Checked;Yes | No
  496.  
  497. Depend On (H)    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage
  498.  
  499. Disabled (H)    Disabled;Yes | No
  500.  
  501. Enabled (H)    Enabled;Yes | No
  502.  
  503. Grayed (H)    Grayed;Yes | No
  504.  
  505. Help Line (H)    Help_Line;HelpLine
  506.  
  507. Hidden (H)    Hidden;Yes | No
  508.  
  509. HotKey (H)    HotKey;HotKey
  510.  
  511.  Show (H)    Show;Yes | No
  512.  
  513. Title (H)    Title;Title
  514.  
  515. Note
  516.  
  517.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  518.   
  519. Dialog Control properties
  520.  
  521. You can view or set properties for dialog controls. For a table of arguments and syntax for the entire dialog box as an object, see Dialog Box Properties.
  522.  
  523. To view properties, arguments, and syntax for the following dialogs, choose from the following list:
  524.  
  525. Bitmap Button
  526.  
  527. Button
  528.  
  529. Check Box
  530.  
  531. Color Control
  532.  
  533. Combo Box
  534.  
  535. Edit Field
  536.  
  537. Edit Integer
  538.  
  539. File Control
  540.  
  541. Group Box
  542.  
  543. Horizontal Scroller (HScrollBar)
  544.  
  545. Label
  546.  
  547. List Box
  548.  
  549. Radio Button
  550.  
  551. Rectangle
  552.  
  553. Spin Control
  554.  
  555. Tab Control
  556.  
  557. Tab Button Control
  558.  
  559. Time Control (TimeCtrl)
  560.  
  561. Vertical Scroller (ScrollBar)
  562.  
  563. Dialog Box properties
  564.  
  565. Syntax
  566.  
  567. [NBName]DialogName:ObjName.Property
  568.  
  569. Description
  570.  
  571. To identify a dialog box, use its name followed by a colon. To specify the property settings of a dialog box outside of the active notebook, enter the notebook name in brackets before the dialog box name:
  572.  
  573. NBName is the name of the notebook containing the dialog box;it is optional.
  574.  
  575. The following table shows properties and syntax for the entire dialog box as an object:
  576.  
  577.  
  578.  
  579. Property    Syntax    Description
  580.  
  581. Dialog Box (Dialog)    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  582.  
  583. DialogName is the name of the dialog box containing the object
  584.  
  585. ObjName is either the object ID number or the name of the object
  586.  
  587. Property is one of the strings listed in the Argument column of the dialog control property tables
  588.  
  589. Dimension    Dimension    see Dimension
  590.  
  591. Disabled    Disabled;Yes | No    
  592.  
  593. Grid Options    Grid_Options;Gridsize, GridShown, GridEnabled    
  594.  
  595. Name    Name;Name    
  596.  
  597. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  598.  
  599. Title    Title;Title    
  600.  
  601. Value (H)    Value;the current settings of all dialog/Toolbar controls that have Process Value set to Yes    
  602.  
  603.  
  604.  
  605. Example
  606.  
  607. @PROPERTY("Dialog1:.Title")
  608.  
  609. Note
  610.  
  611.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  612.   
  613. Bitmap Button properties
  614.  
  615. Syntax
  616.  
  617. [NBName]DialogName:ObjName.Property
  618.  
  619. Description
  620.  
  621. Lets you specify the properties of the bitmap button.
  622.  
  623. The following table lists properties and syntax for the Bitmap Button object:
  624.  
  625.  
  626.  
  627. Property    Syntax    Description
  628.  
  629. Bitmap Button    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  630.  
  631. DialogName is the name of the dialog box containing the object
  632.  
  633. ObjName is either the object ID number or the name of the object
  634.  
  635. Property is one of the strings listed in the Argument column of the dialog control property tables
  636.  
  637. Bitmap    Bitmap;BitmapName    
  638.  
  639. Button Type    Button_Type;Push Button | Radio Button | Check Box | OK Exit Button | Cancel Exit Button    
  640.  
  641. Default Button (D)    Default_Button;Yes | No    
  642.  
  643. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  644.  
  645. Dimension (D)    Dimension    see Dimension
  646.  
  647. Disabled    Disabled;Yes | No    
  648.  
  649. Draw Beveling    Draw_Beveling;Yes | No    
  650.  
  651. Enabled (H, D)    Enabled;Yes | No    
  652.  
  653. Grayed    Grayed;Yes | No    
  654.  
  655. Help Line    Help_Line;HelpLine    
  656.  
  657. Hidden (D)    Hidden;Yes | No    
  658.  
  659. Label Text    Label_Text;LabelText    
  660.  
  661. Name    Name;Name    
  662.  
  663. Object Help    Object_Help;Title, Text, Context    
  664.  
  665. Object ID (R)    Object_ID;ObjectID    
  666.  
  667. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  668.  
  669. Show (H, D)    Show;Yes | No    
  670.  
  671. Tab Stop (D)    Tab_Stop;Yes | No    
  672.  
  673. Text Draw Flags    Text_Draw_Flags;Apply, HorCenter, AlignRight(Yes)orLeft(No), VertCenter, AlignBottom(Yes)orTop(No), WordBreak, SingleLine    
  674.  
  675. Value (H, D)    Value;Yes | No    
  676.  
  677.  
  678.  
  679. Notes
  680.  
  681.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  682.   
  683.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  684.   
  685.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  686.   
  687. Button properties
  688.  
  689. Syntax
  690.  
  691. [NBName]DialogName:ObjName.Property
  692.  
  693. Description
  694.  
  695. Lets you specify the button properties.
  696.  
  697. The following table lists properties and syntax for the Button object:
  698.  
  699.  
  700.  
  701. Property    Syntax    Description
  702.  
  703. Button    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  704.  
  705. DialogName is the name of the dialog box containing the object
  706.  
  707. ObjName is either the object ID number or the name of the object
  708.  
  709. Property is one of the strings listed in the Argument column of the dialog control property tables
  710.  
  711. Button Type    Button_Type;Push Button | Radio Button | Check Box | OK Exit Button | Cancel Exit Button    
  712.  
  713. Default Button (D)    Default_Button;Yes | No    
  714.  
  715. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  716.  
  717. Dimension (D)    Dimension    see Dimension
  718.  
  719. Disabled    Disabled;Yes | No    
  720.  
  721. Enabled (H, D)    Enabled;Yes | No    
  722.  
  723. Grayed    Grayed;Yes | No    
  724.  
  725. Help Line    Help_Line;HelpLine    
  726.  
  727. Hidden (D)    Hidden;Yes | No    
  728.  
  729. Label Text    Label_Text;LabelText    
  730.  
  731. Name    Name;Name    
  732.  
  733. Object Help    Object_Help;Title, Text, Context    
  734.  
  735. Object ID (R)    Object_ID;ObjectID    
  736.  
  737. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  738.  
  739. Show (H, D)    Show;Yes | No    
  740.  
  741. Tab Stop (D)    Tap_Stop;Yes | No    
  742.  
  743. Text Draw Flags    Text_Draw_Flags;Apply, HorCenter, AlignRight(Yes)orLeft(No), VertCenter, AlignBottom(Yes)orTop(No), WordBreak, SingleLine    
  744.  
  745. Value (H, D)    Value;{Page.Display "No;Yes;Yes;Yes;Yes"}Yes | No    
  746.  
  747.  
  748.  
  749. Example
  750.  
  751. @PROPERTY("Dialog1:Button1.Dimension")
  752.  
  753. Notes
  754.  
  755.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  756.   
  757.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  758.   
  759.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  760.   
  761. Check Box properties
  762.  
  763. Syntax
  764.  
  765. [NBName]DialogName:ObjName.Property
  766.  
  767. Description
  768.  
  769. Lets you specify the check box properties.
  770.  
  771. The following table lists properties and syntax for the Check Box object:
  772.  
  773.  
  774.  
  775. Property    Syntax    Description
  776.  
  777. Check Box    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  778.  
  779. DialogName is the name of the dialog box containing the object
  780.  
  781. ObjName is either the object ID number or the name of the object
  782.  
  783. Property is one of the strings listed in the Argument column of the dialog control property tables
  784.  
  785. Button Type    Button_Type;Push Button | Radio Button | Check Box | OK Exit Button | Cancel Exit Button    
  786.  
  787. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  788.  
  789. Dimension    Dimension    see Dimension
  790.  
  791. Disabled    Disabled;Yes | No    
  792.  
  793. Draw to Right    Draw_to_right;Yes | No    
  794.  
  795. Enabled (H)    Enabled;Yes | No    
  796.  
  797. Grayed    Grayed;Yes | No    
  798.  
  799. Help Line    Help_Line;HelpLine    
  800.  
  801. Hidden    Hidden;Yes | No    
  802.  
  803. Label Text    Label_Text;LabelText    
  804.  
  805. Name    Name;Name    
  806.  
  807. Object Help    Object_Help;Title, Text, Context    
  808.  
  809. Object ID (R)    Object_ID;ObjectID    
  810.  
  811. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  812.  
  813. Process Value    Process_Value;Yes | No    
  814.  
  815. Show (H)    Show;Yes | No    
  816.  
  817. Tab Stop    Tab_Stop;Yes | No    
  818.  
  819. Text Draw Flags    Text_Draw_Flags;Apply, HorCenter, AlignRight(Yes)orLeft(No), VertCenter, AlignBottom(Yes)orTop(No), WordBreak, SingleLine    
  820.  
  821. Value (H)    Value;Yes | No    
  822.  
  823.  
  824.  
  825. Example
  826.  
  827. @PROPERTY("Dialog1:Checkbox1.Name")
  828.  
  829. Notes
  830.  
  831.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  832.   
  833.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  834.   
  835. Color Control properties
  836.  
  837. Syntax
  838.  
  839. [NBName]DialogName:ObjName.Property
  840.  
  841. Description
  842.  
  843. Lets you specify the color control properties.
  844.  
  845. The following table lists properties and syntax for the Color Control object:
  846.  
  847.  
  848.  
  849. Property    Syntax    Description
  850.  
  851. Color Control    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  852.  
  853. DialogName is the name of the dialog box containing the object
  854.  
  855. ObjName is either the object ID number or the name of the object
  856.  
  857. Property is one of the strings listed in the Argument column of the dialog control property tables
  858.  
  859. 56 Colors    56_Color;Yes | No    
  860.  
  861. Custom Colors    Custom_Colors;Yes | No    
  862.  
  863. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  864.  
  865. Dimension (D)    Dimension;    see Dimension
  866.  
  867. Disabled    Disabled;Yes | No    
  868.  
  869. Enabled (H, D)    Enabled;Yes | No    
  870.  
  871. Grayed    Grayed;Yes | No    
  872.  
  873. Help Line    Help_Line;HelpLine    
  874.  
  875. Hidden (D)    Hidden;Yes | No    
  876.  
  877. Name    Name;Name    
  878.  
  879. Object Help    Object_Help;Title, Text, Context    
  880.  
  881. Object ID (R)    Object_ID;ObjectID    
  882.  
  883. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  884.  
  885. Process Value (D)    Process_Value;Yes | No    
  886.  
  887. Show (H, D)    Show;Yes | No    
  888.  
  889. Tab Stop (D)    Tab_Stop;Yes | No    
  890.  
  891. Value (H, D)    Value;Red,Green,Blue    
  892.  
  893.  
  894.  
  895. Example
  896.  
  897. @PROPERTY("Dialog1:ColorCtl2.56_Colors")
  898.  
  899. Notes
  900.  
  901.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  902.   
  903.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  904.   
  905.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  906.   
  907. Combo Box properties
  908.  
  909. Syntax
  910.  
  911. [NBName]DialogName:ObjName.Property
  912.  
  913. Description
  914.  
  915. Lets you specify the combo box properties.
  916.  
  917. The following table lists properties and syntax for the Combo Box object:
  918.  
  919.  
  920.  
  921. Property    Syntax    Description
  922.  
  923. Combo Box    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  924.  
  925. DialogName is the name of the dialog box containing the object
  926.  
  927. ObjName is either the object ID number or the name of the object
  928.  
  929. Property is one of the strings listed in the Argument column of the dialog control property tables
  930.  
  931. Add Down Button    Add_Down_Button;Yes | No    
  932.  
  933. Allow Point Mode    Allow_Point_Mode;Yes | No    
  934.  
  935. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  936.  
  937. Dimension (D)    Dimension    see Dimension
  938.  
  939. Disabled    Disabled;Yes | No    
  940.  
  941. Edit Disabled    Edit_Disabled;Yes | No    
  942.  
  943. Edit Length    Edit_Length;Length    
  944.  
  945. Enabled (H, D)    Enabled;Yes | No    
  946.  
  947. Grayed    Grayed;Yes | No    
  948.  
  949. Help Line    Help_Line;HelpLine    
  950.  
  951. Hidden (D)    Hidden;Yes | No    
  952.  
  953. History List    History_List;Yes | No    
  954.  
  955. List    List;List    
  956.  
  957. List Length    List_Length;Length    
  958.  
  959. Name    Name;Name    
  960.  
  961. Object Help    Object_Help;Title, Text, Context    
  962.  
  963. Object ID (R)    Object_ID;ObjectID    
  964.  
  965. Ordered    Ordered;Yes | No    
  966.  
  967. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  968.  
  969. Process Value (D)    Process_Value;Yes | No    
  970.  
  971. Selected    Selected;Selected    
  972.  
  973. Show (H, D)    Show;Yes | No    
  974.  
  975. Tab Stop (D)    Tab_Stop;Yes | No    
  976.  
  977. Terminate Dialog (D)    Terminate_Dialog;Yes | No    
  978.  
  979. Value (H, D)    Value;the text of the selected item in the combo box    
  980.  
  981.  
  982.  
  983. Example
  984.  
  985. @PROPERTY("Dialog1:Combobox3.Allow_Point_Mode")
  986.  
  987. Notes
  988.  
  989.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  990.   
  991.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  992.   
  993.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  994.   
  995. Edit Field properties
  996.  
  997. Syntax
  998.  
  999. [NBName]DialogName:ObjName.Property
  1000.  
  1001. Description
  1002.  
  1003. Lets you specify the edit field properties.
  1004.  
  1005. The following table lists properties and syntax for the Edit Field object:
  1006.  
  1007.  
  1008.  
  1009. Property    Syntax    Description
  1010.  
  1011. Edit Field    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1012.  
  1013. DialogName is the name of the dialog box containing the object
  1014.  
  1015. ObjName is either the object ID number or the name of the object
  1016.  
  1017. Property is one of the strings listed in the Argument column of the dialog control property tables
  1018.  
  1019. Allow Point Mode    Allow_Point_Mode;Yes | No    
  1020.  
  1021. Convert Text    Convert_Text;Yes | No    
  1022.  
  1023. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1024.  
  1025. Dimension (D)    Dimension    see Dimension
  1026.  
  1027. Disabled    Disabled;Yes | No    
  1028.  
  1029. Edit Length    Edit_Length;Length    
  1030.  
  1031. Enabled (H, D)    Enabled;Yes | No    
  1032.  
  1033. Field Type    Field_Type;Integer | String | Real | Range | Hidden    
  1034.  
  1035. Grayed    Grayed;Yes | No    
  1036.  
  1037. Help Line    Help_Line;HelpLine    
  1038.  
  1039. Hidden (D)    Hidden;Yes | No    
  1040.  
  1041. Name    Name;Name    
  1042.  
  1043. Object Help    Object_Help;Title, Text, Context    
  1044.  
  1045. Object ID (R)    Object_ID;ObjectID    
  1046.  
  1047. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1048.  
  1049. Process Value (D)    Process_Value;Yes | No    
  1050.  
  1051. Show (H, D)    Show;Yes | No    
  1052.  
  1053. Show Frame    Show_Frame;Yes | No    
  1054.  
  1055. Tab Stop (D)    Tab_Stop;Yes | No    
  1056.  
  1057. Terminate Dialog (D)    Terminate_Dialog;Yes | No    
  1058.  
  1059. Value (H, D)    Value;the text of the edit field    
  1060.  
  1061.  
  1062.  
  1063. Example
  1064.  
  1065. @PROPERTY("Dialog1:EditField4.Edit_Length")
  1066.  
  1067. Notes
  1068.  
  1069.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  1070.   
  1071.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  1072.   
  1073.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1074.   
  1075. Edit Integer properties
  1076.  
  1077. Syntax
  1078.  
  1079. [NBName]DialogName:ObjName.Property
  1080.  
  1081. Description
  1082.  
  1083. Lets you specify the edit integer properties.
  1084.  
  1085. The following table lists properties and syntax for the Edit Integer object:
  1086.  
  1087.  
  1088.  
  1089. Property    Syntax    Description
  1090.  
  1091. Edit Integer    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1092.  
  1093. DialogName is the name of the dialog box containing the object
  1094.  
  1095. ObjName is either the object ID number or the name of the object
  1096.  
  1097. Property is one of the strings listed in the Argument column of the dialog control property tables
  1098.  
  1099. Default    Default;DefaultValue    
  1100.  
  1101. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1102.  
  1103. Dimension (D)    Dimension    see Dimension
  1104.  
  1105. Disabled    Disabled;Yes | No    
  1106.  
  1107. Edit Length    Edit_Length;Length    
  1108.  
  1109. Enabled (H, D)    Enabled;Yes | No    
  1110.  
  1111. Field Type    Field_Type;Integer | String | Real | Range | Hidden    
  1112.  
  1113. Grayed    Grayed;Yes | No    
  1114.  
  1115. Help Line    Help_Line;HelpLine    
  1116.  
  1117. Hidden (D)    Hidden;Yes | No    
  1118.  
  1119. Maximum    Maximum;MaxValue    
  1120.  
  1121. Minimum    Minimum;MinValue    
  1122.  
  1123. Name    Name;Name    
  1124.  
  1125. Object Help    Object_Help;Title, Text, Context    
  1126.  
  1127. Object ID (R)    Object_ID;ObjectID    
  1128.  
  1129. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1130.  
  1131. Process Value (D)    Process_Value;Yes | No    
  1132.  
  1133. Show (H, D)    Show;Yes | No    
  1134.  
  1135. Show Frame    Show_Frame;Yes | No    
  1136.  
  1137. Tab Stop (D)    Tab_Stop;Yes | No    
  1138.  
  1139. Terminate Dialog (D)    Terminate_Dialog;Yes | No    
  1140.  
  1141. Value (H, D)    Value;the value of the edit field    
  1142.  
  1143.  
  1144.  
  1145. Example
  1146.  
  1147. @PROPERTY("Dialog1:EditInteger2.Field_Type")
  1148.  
  1149. Notes
  1150.  
  1151.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  1152.   
  1153.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1154.   
  1155.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1156.   
  1157. File Select Control properties
  1158.  
  1159. Syntax
  1160.  
  1161. [NBName]DialogName:ObjName.Property
  1162.  
  1163. Description
  1164.  
  1165. Lets you specify the file select control properties.
  1166.  
  1167. The following table lists properties and syntax for the File Select Control object:
  1168.  
  1169.  
  1170.  
  1171. Property    Syntax    Description
  1172.  
  1173. File Select Control    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1174.  
  1175. DialogName is the name of the dialog box containing the object
  1176.  
  1177. ObjName is either the object ID number or the name of the object
  1178.  
  1179. Property is one of the strings listed in the Argument column of the dialog control property tables
  1180.  
  1181. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1182.  
  1183. Dialog Type     Dialog_Type;Open | Save    
  1184.  
  1185. Dimension (D)    Dimension    see Dimension
  1186.  
  1187. Disabled    Disabled;Yes | No    
  1188.  
  1189. Edit Disabled    Edit_Disabled;Yes | No    
  1190.  
  1191. Enabled (H, D)    Enabled;Yes | No    
  1192.  
  1193. File TypeList    FileTypeList;FileTypeList    
  1194.  
  1195. Grayed    Grayed;Yes | No    
  1196.  
  1197. Help Line    Help_Line;HelpLine    
  1198.  
  1199. Hidden (D)    Hidden;Yes | No    
  1200.  
  1201. Name    Name;Name    
  1202.  
  1203. Object Help    Object_Help;Title, Text, Context    
  1204.  
  1205. Object ID    ObjectID;ObjectID    
  1206.  
  1207. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1208.  
  1209. Process Value (D)    Process_Value;Yes | No    
  1210.  
  1211. Show (H, D)    Show;Yes | No    
  1212.  
  1213. Tab Stop (D)    Tab_Stop;Yes | No    
  1214.  
  1215. Terminate Dialog (D)    Terminate_Dialog;Yes | No    
  1216.  
  1217. Title     Title;Title    
  1218.  
  1219. Value (H, D)    Value;The full path and filename    
  1220.  
  1221.  
  1222.  
  1223. Example
  1224.  
  1225. @PROPERTY("Dialog1:FileSelCtrl6.Dialog_Type")
  1226.  
  1227. Notes
  1228.  
  1229.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  1230.   
  1231.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1232.   
  1233.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1234.   
  1235. Group Box properties
  1236.  
  1237. Syntax
  1238.  
  1239. [NBName]DialogName:ObjName.Property
  1240.  
  1241. Description
  1242.  
  1243. Lets you specify the group box properties.
  1244.  
  1245. The following table lists properties and syntax for the Group Box object:
  1246.  
  1247.  
  1248.  
  1249. Property    Syntax    Description
  1250.  
  1251. Group Box    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1252.  
  1253. DialogName is the name of the dialog box containing the object
  1254.  
  1255. ObjName is either the object ID number or the name of the object
  1256.  
  1257. Property is one of the strings listed in the Argument column of the dialog control property tables
  1258.  
  1259. Attach Child    Attach_Child;Yes | No    
  1260.  
  1261. Dimension    Dimension    see Dimension
  1262.  
  1263. Disabled    Disabled;Yes | No    
  1264.  
  1265. Enabled (H)    Enabled;Yes | No    
  1266.  
  1267. Group Text    Group_Text;Text    
  1268.  
  1269. Hidden    Hidden;Yes | No    
  1270.  
  1271. Name    Name;Name    
  1272.  
  1273. Object Help    Object_Help;Title, Text, Context    
  1274.  
  1275. Object ID (R)    Object_ID;ObjectID    
  1276.  
  1277. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1278.  
  1279. Process Value    Process_Value;Yes | No    
  1280.  
  1281. Selected    Selected;Number    
  1282.  
  1283. Show (H)    Show;Yes | No    
  1284.  
  1285. Value (H)    Value;The type of control selecte    
  1286.  
  1287.  
  1288.  
  1289. Example
  1290.  
  1291. @PROPERTY("Dialog1:GroupBox10.Group_Text")
  1292.  
  1293. Notes
  1294.  
  1295.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1296.   
  1297.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1298.   
  1299. Horizontal Scroller properties
  1300.  
  1301. Syntax
  1302.  
  1303. [NBName]DialogName:ObjName.Property
  1304.  
  1305. Description
  1306.  
  1307. Lets you specify the horizontal scroller properties.
  1308.  
  1309. The following table lists properties and syntax for the Horizontal Scroller object:
  1310.  
  1311.  
  1312.  
  1313. Property    Syntax    Description
  1314.  
  1315. Horizontal Scroller (HScrollBar)    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1316.  
  1317. DialogName is the name of the dialog box containing the object
  1318.  
  1319. ObjName is either the object ID number or the name of the object
  1320.  
  1321. Property is one of the strings listed in the Argument column of the dialog control property tables
  1322.  
  1323. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1324.  
  1325. Dimension (D)    Dimension    see Dimension
  1326.  
  1327. Disabled    Disabled;Yes | No    
  1328.  
  1329. Enabled (H, D)    Enabled;Yes | No    
  1330.  
  1331. Grayed    Grayed;Yes | No    
  1332.  
  1333. Help Line    Help_Line;HelpLine    
  1334.  
  1335. Hidden (D)    Hidden;Yes | No    
  1336.  
  1337. Name    Name;Name    
  1338.  
  1339. Object Help    Object_Help;Title, Text, Context    
  1340.  
  1341. Object ID (R)    Object_ID;ObjectID    
  1342.  
  1343. Parameters    Parameters;Min, Max, Line, Page, Time    
  1344.  
  1345. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1346.  
  1347. Process Value (D)    Process_Value;Yes | No    
  1348.  
  1349. Show (H, D)    Show;Yes | No    
  1350.  
  1351. Tab Stop (D)    Tab_Stop;Yes | No    
  1352.  
  1353. Value (H, D)    Value;the numeric value for the position of the scroll thumb    
  1354.  
  1355.  
  1356.  
  1357. Example
  1358.  
  1359. @PROPERTY("Dialog1:Hscrollbar1.Show")
  1360.  
  1361. Notes
  1362.  
  1363.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  1364.   
  1365.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1366.   
  1367.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1368.   
  1369. Label properties
  1370.  
  1371. Syntax
  1372.  
  1373. [NBName]DialogName:ObjName.Property
  1374.  
  1375. Description
  1376.  
  1377. Lets you specify the label properties.
  1378.  
  1379. The following table lists properties and syntax for the Label object:
  1380.  
  1381.  
  1382.  
  1383. Property    Syntax    Description
  1384.  
  1385. Label    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1386.  
  1387. DialogName is the name of the dialog box containing the object
  1388.  
  1389. ObjName is either the object ID number or the name of the object
  1390.  
  1391. Property is one of the strings listed in the Argument column of the dialog control property tables
  1392.  
  1393. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1394.  
  1395. Dimension (D)    Dimension    see Dimension
  1396.  
  1397. Disabled    Disabled;Yes | No    
  1398.  
  1399. Enabled (H, D)    Enabled;Yes | No    
  1400.  
  1401. Grayed    Grayed;Yes | No    
  1402.  
  1403. Hidden (D)    Hidden;Yes | No    
  1404.  
  1405. Label Font    Label_Font;    
  1406.  
  1407. Label Text    Label_Text;LabelText    
  1408.  
  1409. Name    Name;Name    
  1410.  
  1411. Object ID (R)    Object_ID;ObjectID    
  1412.  
  1413. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1414.  
  1415. Process Value (D)    Process_Value;Yes | No    
  1416.  
  1417. Show (H, D)    Show;Yes | No    
  1418.  
  1419. Text Draw Flags    Text_Draw_Flags;Apply, HorCenter, AlignRight(Yes) or Left(No), VertCenter, AlignBottom(Yes)or Top(No), WordBreak, SingleLine    
  1420.  
  1421. Value (H, D)    Value;LabelText    
  1422.  
  1423.  
  1424.  
  1425. Example
  1426.  
  1427. @PROPERTY("Dialog1:label3.label_font")
  1428.  
  1429. Notes
  1430.  
  1431.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  1432.   
  1433.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1434.   
  1435.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1436.   
  1437. List Box properties
  1438.  
  1439. Syntax
  1440.  
  1441. [NBName]DialogName:ObjName.Property
  1442.  
  1443. Description
  1444.  
  1445. Lets you specify the list box properties.
  1446.  
  1447. The following table lists properties and syntax for the List Box object:
  1448.  
  1449.  
  1450.  
  1451. Property    Syntax    Description
  1452.  
  1453. List Box    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1454.  
  1455. DialogName is the name of the dialog box containing the object
  1456.  
  1457. ObjName is either the object ID number or the name of the object
  1458.  
  1459. Property is one of the strings listed in the Argument column of the dialog control property tables
  1460.  
  1461. Attach Child    Attach_Child;Yes | No    
  1462.  
  1463. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1464.  
  1465. Dimension    Dimension    see Dimension
  1466.  
  1467. Disabled    Disabled;Yes | No    
  1468.  
  1469. Enabled (H)    Enabled;Yes | No    
  1470.  
  1471. Grayed    Grayed;Yes | No    
  1472.  
  1473. Help Line    Help_Line;HelpLine    
  1474.  
  1475. Hidden    Hidden;Yes | No    
  1476.  
  1477. List    List;List    
  1478.  
  1479. Name    Name;Name    
  1480.  
  1481. Number of Columns    Number_of_Columns;Number    
  1482.  
  1483. Object Help    Object_Help;Title, Text, Context    
  1484.  
  1485. Object ID (R)    Object_ID;ObjectID    
  1486.  
  1487. Ordered    Ordered;Yes | No    
  1488.  
  1489. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1490.  
  1491. Process Value    Process_Value;Yes | No    
  1492.  
  1493. Selected    Selected;NumberSelected    
  1494.  
  1495. Selection Text    Selection_Text;SelectionText    
  1496.  
  1497. Show (H)    Show;Yes | No    
  1498.  
  1499. Tab Stop    Tab_Stop;Yes | No    
  1500.  
  1501. Value (H)    Value;the selected item in the list box    
  1502.  
  1503.  
  1504.  
  1505.  
  1506.  
  1507. Example
  1508.  
  1509. @PROPERTY("Dialog1:listbox2.number_of_columns")
  1510.  
  1511. Notes
  1512.  
  1513.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1514.   
  1515.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1516.   
  1517. Radio Button properties
  1518.  
  1519. Syntax
  1520.  
  1521. [NBName]DialogName:ObjName.Property
  1522.  
  1523. Description
  1524.  
  1525. Lets you specify the radio button properties.
  1526.  
  1527. The following table lists properties and syntax for the Radio Button object:
  1528.  
  1529.  
  1530.  
  1531. Property    Syntax    Description
  1532.  
  1533. Radio Button    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1534.  
  1535. DialogName is the name of the dialog box containing the object
  1536.  
  1537. ObjName is either the object ID number or the name of the object
  1538.  
  1539. Property is one of the strings listed in the Argument column of the dialog control property tables
  1540.  
  1541. Button Type    Button_Type;Push Button | Radio Button | Check Box | OK Exit Button | Cancel Exit Button    
  1542.  
  1543. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1544.  
  1545. Dimension    Dimension    see Dimension
  1546.  
  1547. Disabled    Disabled;Yes | No    
  1548.  
  1549. Draw to Right    Draw_to_right;Yes | No    
  1550.  
  1551. Enabled (H)    Enabled;Yes | No    
  1552.  
  1553. Grayed    Grayed;Yes | No    
  1554.  
  1555. Help Line    Help_Line;HelpLine    
  1556.  
  1557. Hidden    Hidden;Yes | No    
  1558.  
  1559. Label Text    Label_Text;LabelText    
  1560.  
  1561. Name    Name;Name    
  1562.  
  1563. Object Help    Object_Help;Title, Text, Context    
  1564.  
  1565. Object ID (R)    Object_ID;ObjectID    
  1566.  
  1567. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1568.  
  1569. Process Value    Process_Value;Yes | No    
  1570.  
  1571. Show (H)    Show;Yes | No    
  1572.  
  1573. Tab Stop    Tab_Stop;Yes | No    
  1574.  
  1575. Text Draw Flags    Text_Draw_Flags;Apply, HorCenter, AlignRight(Yes)orLeft(No), VertCenter, AlignBottom(Yes)orTop(No), WordBreak, SingleLine    
  1576.  
  1577. Value (H)    Value;Yes | No    
  1578.  
  1579.  
  1580.  
  1581. Example
  1582.  
  1583. @PROPERTY("Dialog1:radiobutton3.button_type")
  1584.  
  1585. Notes
  1586.  
  1587.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1588.   
  1589.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1590.   
  1591. Rectangle properties
  1592.  
  1593. Syntax
  1594.  
  1595. [NBName]DialogName:ObjName.Property
  1596.  
  1597. Description
  1598.  
  1599. Lets you specify the rectangle properties.
  1600.  
  1601. The following table lists properties and syntax for the Rectangle object:
  1602.  
  1603.  
  1604.  
  1605. Property    Syntax    Description
  1606.  
  1607. Rectangle    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1608.  
  1609. DialogName is the name of the dialog box containing the object
  1610.  
  1611. ObjName is either the object ID number or the name of the object
  1612.  
  1613. Property is one of the strings listed in the Argument column of the dialog control property tables
  1614.  
  1615. Attach Child (D)    Attach_Child;Yes | No    
  1616.  
  1617. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1618.  
  1619. Dimension (D)    Dimension    see Dimension
  1620.  
  1621. Disabled    Disabled;Yes | No    
  1622.  
  1623. Enabled (H)    Enabled;Yes | No    
  1624.  
  1625. Fill Color    Fill_Color    
  1626.  
  1627. Frame Color    Frame_Color    
  1628.  
  1629. Grayed    Grayed;Yes | No    
  1630.  
  1631. Hidden (D)    Hidden;Yes | No    
  1632.  
  1633. Name    Name;Name    
  1634.  
  1635. Object ID (R)    Object_ID;ObjectID    
  1636.  
  1637. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1638.  
  1639. Rectangle Style    Rectangle_Style;Plain | Framed | Beveled Out | Beveled In | Transparent | Engraved    
  1640.  
  1641. Show (H, D)    Show;Yes | No    
  1642.  
  1643.  
  1644.  
  1645. Example
  1646.  
  1647. @PROPERTY("Dialog1:rectangle3.fill_color")
  1648.  
  1649. Notes
  1650.  
  1651.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  1652.   
  1653.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1654.   
  1655.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1656.   
  1657. Spin Control properties
  1658.  
  1659. Syntax
  1660.  
  1661. [NBName]DialogName:ObjName.Property
  1662.  
  1663. Description
  1664.  
  1665. Lets you specify the spin control properties.
  1666.  
  1667. The following table lists properties and syntax for the Spin Control object:
  1668.  
  1669.  
  1670.  
  1671. Property    Syntax    Description
  1672.  
  1673. Spin Control    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1674.  
  1675. DialogName is the name of the dialog box containing the object
  1676.  
  1677. ObjName is either the object ID number or the name of the object
  1678.  
  1679. Property is one of the strings listed in the Argument column of the dialog control property tables
  1680.  
  1681. Attach Child (D)    Attach_Child;Yes | No    
  1682.  
  1683. Default    Default;DefaultValue    
  1684.  
  1685. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1686.  
  1687. Dimension (D)    Dimension    see Dimension
  1688.  
  1689. Disabled    Disabled;Yes | No    
  1690.  
  1691. Edit Length    Edit_Length;Length    
  1692.  
  1693. Enabled (H, D)    Enabled;Yes | No    
  1694.  
  1695. Grayed    Grayed;Yes | No    
  1696.  
  1697. Help Line    Help_Line;HelpLine    
  1698.  
  1699. Hidden (D)    Hidden;Yes | No    
  1700.  
  1701. Maximum    Maximum;MaxValue    
  1702.  
  1703. Minimum    Minimum;MinValue    
  1704.  
  1705. Name    Name;Name    
  1706.  
  1707. Object Help    Object_Help;Title, Text, Context    
  1708.  
  1709. Object ID (R)    Object_ID;ObjectID    
  1710.  
  1711. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1712.  
  1713. Process Value (D)    Process_Value;Yes | No    
  1714.  
  1715. Show (H, D)    Show;Yes | No    
  1716.  
  1717. Tab Stop (D)    Tab_Stop;Yes | No    
  1718.  
  1719. Terminate Dialog (D)    Terminate_Dialog;Yes | No    
  1720.  
  1721. Value (H, D)    Value;the current value of the spin control    
  1722.  
  1723.  
  1724.  
  1725.  
  1726.  
  1727. Example
  1728.  
  1729. @PROPERTY("Dialog1:spinctrl3.maximum")
  1730.  
  1731. Notes
  1732.  
  1733.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  1734.   
  1735.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1736.   
  1737.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1738.   
  1739. Tab Control properties
  1740.  
  1741. Syntax
  1742.  
  1743. [NBName]DialogName:ObjName.Property
  1744.  
  1745. Description
  1746.  
  1747. Lets you specify the tab control properties.
  1748.  
  1749. The following table lists properties and syntax for the Tab Control object:
  1750.  
  1751.  
  1752.  
  1753. Property    Syntax    Description
  1754.  
  1755. Tab Control    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1756.  
  1757. DialogName is the name of the dialog box containing the object
  1758.  
  1759. ObjName is either the object ID number or the name of the object
  1760.  
  1761. Property is one of the strings listed in the Argument column of the dialog control property tables
  1762.  
  1763. Active Sheet    Active_Page;ActivePage    
  1764.  
  1765. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1766.  
  1767. Dimension    Dimension    see Dimension
  1768.  
  1769. Disabled    Disabled;Yes | No    
  1770.  
  1771. Enabled (H)    Enabled;Yes | No    
  1772.  
  1773. Grayed    Grayed;Yes | No    
  1774.  
  1775. Help Line    Help_Line;HelpLine    
  1776.  
  1777. Hidden    Hidden;Yes | No    
  1778.  
  1779. Name    Name;Name    
  1780.  
  1781. Object Help    Object_Help;Title, Text, Context    
  1782.  
  1783. Object ID    Object_ID;ObjectID    
  1784.  
  1785. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1786.  
  1787. Process Value    Process_Value;Yes | No    
  1788.  
  1789. Sheet List    Page_List;    
  1790.  
  1791. Show (H)    Show;Yes | No    
  1792.  
  1793. Tab Stop    Tab_Stop;Yes | No    
  1794.  
  1795. Value (H)    Value;the current value of the spin control    
  1796.  
  1797.  
  1798.  
  1799. Example
  1800.  
  1801. @PROPERTY("Dialog1:TabCtrl3.Active_Page")
  1802.  
  1803. Note
  1804.  
  1805.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1806.   
  1807. Tab Button Control properties
  1808.  
  1809. Syntax
  1810.  
  1811. [NBName]DialogName:ObjName.Property
  1812.  
  1813. Description
  1814.  
  1815. Lets you specify the tab button control properties.
  1816.  
  1817. The following table lists properties and syntax for the Tab Button Control object:
  1818.  
  1819.  
  1820.  
  1821. Property    Syntax    Description
  1822.  
  1823. Tab Button Control    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1824.  
  1825. DialogName is the name of the dialog box containing the object
  1826.  
  1827. ObjName is either the object ID number or the name of the object
  1828.  
  1829. Property is one of the strings listed in the Argument column of the dialog control property tables
  1830.  
  1831. Grayed    Grayed;Yes | No    
  1832.  
  1833. Help Line    Help_Line;HelpLine    
  1834.  
  1835. Name    Name;Name    
  1836.  
  1837. Object Help    Object_Help;Title, Text, Context    
  1838.  
  1839. Object ID    Object_ID;ObjectID    
  1840.  
  1841. Sheet Name Text    PageName_Text;PageNameText    
  1842.  
  1843.  
  1844.  
  1845. Example
  1846.  
  1847. @PROPERTY("Dialog1:TabButton2.Object_ID")
  1848.  
  1849. Time Control properties
  1850.  
  1851. Syntax
  1852.  
  1853. [NBName]DialogName:ObjName.Property
  1854.  
  1855. Description
  1856.  
  1857. Lets you specify the time control properties.
  1858.  
  1859. The following table lists properties and syntax for the Time Control object:
  1860.  
  1861.  
  1862.  
  1863. Property    Syntax    Description
  1864.  
  1865. Time Control (TimeCtrl)    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1866.  
  1867. DialogName is the name of the dialog box containing the object
  1868.  
  1869. ObjName is either the object ID number or the name of the object
  1870.  
  1871. Property is one of the strings listed in the Argument column of the dialog control property tables
  1872.  
  1873. Alarm On    Alarm_On;Yes | No    
  1874.  
  1875. Alarm Time    Alarm_Time;Hour, Minute, Second    
  1876.  
  1877. Hour    Alarm_Time.Hour;Hour    
  1878.  
  1879. Minute    Alarm_Time.Minute;Minute    
  1880.  
  1881. Second    Alarm_Time.Second;Second    
  1882.  
  1883. Attach Child (D)    Attach_Child;Yes | No    
  1884.  
  1885. Current Time (R)    Current_Time;Hour, Minute, Second    
  1886.  
  1887. Hour    Current_Time.Hour;Hour    
  1888.  
  1889. Minute    Current_Time.Minute;Minute    
  1890.  
  1891. Second    Current_Time.Second;Second    
  1892.  
  1893. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1894.  
  1895. Dimension (D)    Dimension    see Dimension
  1896.  
  1897. Help Line    Help_Line;HelpLine    
  1898.  
  1899. Hidden (D)    Hidden;Yes | No    
  1900.  
  1901. Interval in Units    Interval_In_Units;Number    
  1902.  
  1903. Name    Name;Name    
  1904.  
  1905. Object Help    Object_Help;Title, Text, Context    
  1906.  
  1907. Object ID (R)    Object_ID;ObjectID    
  1908.  
  1909. Position Adjust (D)    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1910.  
  1911. Process Value (D)    Process_Value;Yes | No    
  1912.  
  1913. Show (H, D)    Show;Yes | No    
  1914.  
  1915. Show Time    Show_Time;Yes | No    
  1916.  
  1917. Timer On    Timer_On;Yes | No    
  1918.  
  1919. Units in Milliseconds    Units_in_Milliseconds;Number    
  1920.  
  1921.  
  1922.  
  1923. Example
  1924.  
  1925. @PROPERTY("Dialog1:TimeCtrl4.alarm_on")
  1926.  
  1927. Notes
  1928.  
  1929.   If a property name is followed by (D), it is available for Dialogs only. All other properties are available for Toolbars and Dialogs.
  1930.   
  1931.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  1932.   
  1933.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  1934.   
  1935. Vertical Scroller properties
  1936.  
  1937. Syntax
  1938.  
  1939. [NBName]DialogName:ObjName.Property
  1940.  
  1941. Description
  1942.  
  1943. Lets you specify the vertical scroller properties.
  1944.  
  1945. The following table lists properties and syntax for the Vertical Scroller object:
  1946.  
  1947.  
  1948.  
  1949. Property    Syntax    Description
  1950.  
  1951. Vertical Scroller (ScrollBar)    [NBName]DialogName:ObjName.Property    NBName  is the name of the active notebook
  1952.  
  1953. DialogName is the name of the dialog box containing the object
  1954.  
  1955. ObjName is either the object ID number or the name of the object
  1956.  
  1957. Property is one of the strings listed in the Argument column of the dialog control property tables
  1958.  
  1959. Depend On    Depend_On;Desktop, NoteWin, ChartWin, DiaWin, EditWin, ObjectsPage    
  1960.  
  1961. Dimension    Dimension    see Dimension
  1962.  
  1963. Disabled    Disabled;Yes | No    
  1964.  
  1965. Enabled (H)    Enabled;Yes | No    
  1966.  
  1967. Grayed    Grayed;Yes | No    
  1968.  
  1969. Help Line    Help_Line;HelpLine    
  1970.  
  1971. Hidden    Hidden;Yes | No    
  1972.  
  1973. Name    Name;Name    
  1974.  
  1975. Object Help    Object_Help;Title, Text, Context    
  1976.  
  1977. Object ID (R)    Object_ID;ObjectID    
  1978.  
  1979. Parameters    Parameters;Min, Max, Line, Page, Time    
  1980.  
  1981. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  1982.  
  1983. Process Value    Process_Value;Yes | No    
  1984.  
  1985. Show (H)    Show;Yes | No    
  1986.  
  1987. Tab Stop    Tab_Stop;Yes | No    
  1988.  
  1989. Value (H)    Value;the numeric value for the position of the scroll thumb    
  1990.  
  1991.  
  1992.  
  1993. Example
  1994.  
  1995. @PROPERTY("Dialog1:scrollbar2.parameters")
  1996.  
  1997. Notes
  1998.  
  1999.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2000.   
  2001.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  2002.   
  2003. Drawn Chart Object properties
  2004.  
  2005. Drawn objects in a chart are created by the Chart tools; see Fixed Chart Object Properties for a list of fixed chart objects. Note that some properties of a drawn object only appear in a property dialog when Quattro Pro is loaded with the /D command line switch.
  2006.  
  2007. To view properties, arguments, and syntax for the following chart annotation objects, choose from the following list:
  2008.  
  2009. Arrow
  2010.  
  2011. Ellipse
  2012.  
  2013. Freehand Polygon
  2014.  
  2015. Freehand Polyline
  2016.  
  2017. Line
  2018.  
  2019. Polygon
  2020.  
  2021. Polyline
  2022.  
  2023. Rectangle
  2024.  
  2025. Rounded Rectangle
  2026.  
  2027. Selection
  2028.  
  2029. Text Box
  2030.  
  2031. Arrow properties
  2032.  
  2033. Syntax
  2034.  
  2035. [NBName]ChartName:ObjName.Property
  2036.  
  2037. Description
  2038.  
  2039. Lets you specify the arrow properties.
  2040.  
  2041. The following table lists properties and syntax for the Arrow object:
  2042.  
  2043.  
  2044.  
  2045. Property    Syntax    Description
  2046.  
  2047. Arrow    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2048.  
  2049. ChartName is the name of the chart containing the object
  2050.  
  2051. ObjName is either the object ID number or the name of the object
  2052.  
  2053. Property is one of the strings listed in the Argument column of the dialog control property tables
  2054.  
  2055. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2056.  
  2057. Dimension (H)    Dimension    see Dimension
  2058.  
  2059. Fill Settings    Fill_Settings    see Common Chart Object properties
  2060.  
  2061. Name (H)    Name;Name    
  2062.  
  2063. Object ID (H, R)    Object_ID;ObjectID    
  2064.  
  2065.  
  2066.  
  2067. Example
  2068.  
  2069. {SetProperty "Object_Name";"Arrow2"}
  2070.  
  2071. Notes
  2072.  
  2073.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2074.   
  2075.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  2076.   
  2077. Cell properties
  2078.  
  2079. Description
  2080.  
  2081. Lets you specify the cell properties.
  2082.  
  2083. The following table lists properties and syntax for the Cell object:
  2084.  
  2085.  
  2086.  
  2087. Property    Syntax    Description
  2088.  
  2089. Cell    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2090.  
  2091. ChartName is the name of the chart containing the object
  2092.  
  2093. ObjName is either the object ID number or the name of the object
  2094.  
  2095. Property is one of the strings listed in the Argument column of the dialog control property tables
  2096.  
  2097. Dimension (H)    Dimension    see Dimension
  2098.  
  2099. Display    Display;RowBorders?(Yes | No), ColBorders?(Yes | No), HorzGridLines?(Yes | No), VertGridLines?(Yes | No), AspectRatio?(Yes | No)    
  2100.  
  2101. Name (H)    Name;Name    
  2102.  
  2103. Object ID (H, R)    Object_ID;ObjectID    
  2104.  
  2105. Selection    Selection;Block    
  2106.  
  2107.  
  2108.  
  2109. Example
  2110.  
  2111. {GETOBJECTPROPERTY B:C32,"A:A23.Numeric_Format"}
  2112.  
  2113. Notes
  2114.  
  2115.   If a property name is followed by (H), it is a hidden property and does not appear in the object's property dialog. 
  2116.   
  2117.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read-only property.
  2118.   
  2119. Ellipse properties
  2120.  
  2121. Syntax
  2122.  
  2123. [NBName]ChartName:ObjName.Property
  2124.  
  2125. Description
  2126.  
  2127. Lets you specify the ellipse properties.
  2128.  
  2129. The following table lists properties and syntax for the Ellipse object:
  2130.  
  2131.  
  2132.  
  2133. Property    Syntax    Description
  2134.  
  2135. Ellipse    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2136.  
  2137. ChartName is the name of the chart containing the object
  2138.  
  2139. ObjName is either the object ID number or the name of the object
  2140.  
  2141. Property is one of the strings listed in the Argument column of the dialog control property tables
  2142.  
  2143. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2144.  
  2145. Dimension (H)    Dimension    see Dimension
  2146.  
  2147. Fill Settings    Fill_Settings    see Common Chart Object properties
  2148.  
  2149. Name (H)    Name;Name    
  2150.  
  2151. Object ID (H, R)    Object_ID;ObjectID    
  2152.  
  2153. Object Name    Object_Name;ObjName    
  2154.  
  2155. Protection    Protection;Yes | No    
  2156.  
  2157.  
  2158.  
  2159. Example
  2160.  
  2161. {SETOBJECTPROPERTY "A:Ellipse1.Fill_Settings";"Bitmap,Shrink to fit, C:\Corel\Suite9\Graphics\Pictures\Business\World.bmp"}
  2162.  
  2163. Notes
  2164.  
  2165.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2166.   
  2167.   If a property name is followed by (R), you cannot set it with a macro command or link command;it is a read only property.
  2168.   
  2169. Freehand Polygon properties
  2170.  
  2171. Syntax
  2172.  
  2173. [NBName]ChartName:ObjName.Property
  2174.  
  2175. Description
  2176.  
  2177. Lets you specify the freehand polygon properties.
  2178.  
  2179. The following table lists properties and syntax for the Freehand Polygon object:
  2180.  
  2181.  
  2182.  
  2183. Property    Syntax    Description
  2184.  
  2185. Freehand Polygon    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2186.  
  2187. ChartName is the name of the chart containing the object
  2188.  
  2189. ObjName is either the object ID number or the name of the object
  2190.  
  2191. Property is one of the strings listed in the Argument column of the dialog control property tables
  2192.  
  2193. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2194.  
  2195. Dimension (H)    Dimension    see Dimension
  2196.  
  2197. Fill Settings    Fill_Settings    see Common Chart Object properties
  2198.  
  2199. Name (H)    Name;    
  2200.  
  2201. Object ID (H, R)    Object_ID;ObjectID    
  2202.  
  2203.  
  2204.  
  2205. Notes
  2206.  
  2207.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2208.   
  2209.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  2210.   
  2211. Freehand Polyline properties
  2212.  
  2213. Syntax
  2214.  
  2215. [NBName]ChartName:ObjName.Property
  2216.  
  2217. Description
  2218.  
  2219. Lets you specify the freehand polyline properties.
  2220.  
  2221. The following table lists properties and syntax for the Freehand Polyline object:
  2222.  
  2223.  
  2224.  
  2225. Property    Syntax    Description
  2226.  
  2227. Freehand Polyline    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2228.  
  2229. ChartName is the name of the chart containing the object
  2230.  
  2231. ObjName is either the object ID number or the name of the object
  2232.  
  2233. Property is one of the strings listed in the Argument column of the dialog control property tables
  2234.  
  2235. Dimension (H)    Dimension    see Dimension
  2236.  
  2237. Line Setting    Line_Setting;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2238.  
  2239. Name (H)    Name;Name    
  2240.  
  2241. Object ID (H, R)    Object_ID;ObjectID    
  2242.  
  2243.  
  2244.  
  2245. Notes
  2246.  
  2247.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2248.   
  2249.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  2250.   
  2251. Line properties
  2252.  
  2253. Syntax
  2254.  
  2255. [NBName]ChartName:ObjName.Property
  2256.  
  2257. Description
  2258.  
  2259. Lets you specify the line properties.
  2260.  
  2261. The following table lists properties and syntax for the Line object:
  2262.  
  2263.  
  2264.  
  2265. Property    Syntax    Description
  2266.  
  2267. Line    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2268.  
  2269. ChartName is the name of the chart containing the object
  2270.  
  2271. ObjName is either the object ID number or the name of the object
  2272.  
  2273. Property is one of the strings listed in the Argument column of the dialog control property tables
  2274.  
  2275. Dimension (H)    Dimension    see Dimension
  2276.  
  2277. Line Setting    Line_Setting;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2278.  
  2279. Name (H)    Name;Name    
  2280.  
  2281. Object ID (H, R)    Object_ID;ObjectID    
  2282.  
  2283.  
  2284.  
  2285. Example
  2286.  
  2287. {SetProperty "Object_Name";"Test"}
  2288.  
  2289. Notes
  2290.  
  2291.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2292.   
  2293.   If a property name is followed by (r), you cannot set it with a macro command or link command; it is a read only property.
  2294.   
  2295. Polygon Properties
  2296.  
  2297. Syntax
  2298.  
  2299. [NBName]ChartName:ObjName.Property
  2300.  
  2301. Description
  2302.  
  2303. Lets you specify the polygon properties.
  2304.  
  2305. The following table lists properties and syntax for the Polygon object:
  2306.  
  2307.  
  2308.  
  2309. Property    Syntax    Description
  2310.  
  2311. Polygon    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2312.  
  2313. ChartName is the name of the chart containing the object
  2314.  
  2315. ObjName is either the object ID number or the name of the object
  2316.  
  2317. Property is one of the strings listed in the Argument column of the dialog control property tables
  2318.  
  2319. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2320.  
  2321. Dimension (H)    Dimension    see Dimension
  2322.  
  2323. Fill Settings    Fill_Settings    see Common Chart Object properties
  2324.  
  2325. Name (H)    Name;Name    
  2326.  
  2327. Object ID (H, R)    Object_ID;ObjectID    
  2328.  
  2329.  
  2330.  
  2331. Notes
  2332.  
  2333.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2334.   
  2335.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  2336.   
  2337. Polyline properties
  2338.  
  2339. Syntax
  2340.  
  2341. [NBName]ChartName:ObjName.Property
  2342.  
  2343. Description
  2344.  
  2345. Lets you specify the polyline properties.
  2346.  
  2347. The following table lists properties and syntax for the Polyline object:
  2348.  
  2349.  
  2350.  
  2351. Property    Syntax    Description
  2352.  
  2353. Polyline    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2354.  
  2355. ChartName is the name of the chart containing the object
  2356.  
  2357. ObjName is either the object ID number or the name of the object
  2358.  
  2359. Property is one of the strings listed in the Argument column of the dialog control property tables
  2360.  
  2361. Dimension (H)    Dimension    see Dimension
  2362.  
  2363. Line Setting    Line_Setting;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2364.  
  2365. Name (H)    Name;Name    
  2366.  
  2367. Object ID (H, R)    Object_ID;ObjectID    
  2368.  
  2369.  
  2370.  
  2371. Notes
  2372.  
  2373.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2374.   
  2375.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  2376.   
  2377. Rectangle properties
  2378.  
  2379. Syntax
  2380.  
  2381. [NBName]ChartName:ObjName.Property
  2382.  
  2383. Description
  2384.  
  2385. Lets you specify the rectangle properties.
  2386.  
  2387. The following table lists properties and syntax for the Rectangle object:
  2388.  
  2389.  
  2390.  
  2391. Property    Syntax    Description
  2392.  
  2393. Rectangle    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2394.  
  2395. ChartName is the name of the chart containing the object
  2396.  
  2397. ObjName is either the object ID number or the name of the object
  2398.  
  2399. Property is one of the strings listed in the Argument column of the dialog control property tables
  2400.  
  2401. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2402.  
  2403. Dimension (H)    Dimension    see Dimension
  2404.  
  2405. Fill Settings    Fill_Settings    see Common Chart Object properties
  2406.  
  2407. Name (H)    Name;Name    
  2408.  
  2409. Object ID (H, R)    Object_ID;ObjectID    
  2410.  
  2411.  
  2412.  
  2413. Note
  2414.  
  2415.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog.
  2416.   
  2417. Rounded Rectangle properties
  2418.  
  2419. Syntax
  2420.  
  2421. [NBName]ChartName:ObjName.Property
  2422.  
  2423. Description
  2424.  
  2425. Lets you specify the rounded rectangle properties.
  2426.  
  2427. The following table lists properties and syntax for the Rounded Rectangle object:
  2428.  
  2429.  
  2430.  
  2431. Property    Syntax    Description
  2432.  
  2433. Rounded Rectangle    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2434.  
  2435. ChartName is the name of the chart containing the object
  2436.  
  2437. ObjName is either the object ID number or the name of the object
  2438.  
  2439. Property is one of the strings listed in the Argument column of the dialog control property tables
  2440.  
  2441. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2442.  
  2443. Dimension (H)    Dimension    see Dimension
  2444.  
  2445. Fill Settings    Fill_Settings    see Common Chart Object properties
  2446.  
  2447. Name (H)    Name;Name    
  2448.  
  2449. Object ID (H, R)    Object_ID;ObjectID    
  2450.  
  2451.  
  2452.  
  2453. Notes
  2454.  
  2455.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2456.   
  2457.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  2458.   
  2459. Text Box properties
  2460.  
  2461. Syntax
  2462.  
  2463. [NBName]ChartName:ObjName.Property
  2464.  
  2465. Description
  2466.  
  2467. Lets you specify the text box properties.
  2468.  
  2469. The following table lists properties and syntax for the Text Box object:
  2470.  
  2471.  
  2472.  
  2473. Property    Syntax    Description
  2474.  
  2475. Text Box    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2476.  
  2477. ChartName is the name of the chart containing the object
  2478.  
  2479. ObjName is either the object ID number or the name of the object
  2480.  
  2481. Property is one of the strings listed in the Argument column of the dialog control property tables
  2482.  
  2483. Alignment    Alignment;Left | Right | Center, WordWrap, TabStops    
  2484.  
  2485. Box Settings    Box_Settings;No box | Single outline | Rounded corners | Double outline | Thick outline 1 | Thick rounded corners | Three dimensional | Thick outline 2 | Bevel out | Shadowed | Thick outline 3 | Bevel in, Red, Blue, Green    
  2486.  
  2487. Chart Button    Chart_Button;GotoSlide?, SlideName, Effect, Duration, Slow | Med | Fast, Overlay?, RunMacro?, MacroText    
  2488.  
  2489. Dimension (H)    Dimension    
  2490.  
  2491. Fill Settings    Fill_Settings    
  2492.  
  2493. Name (H)    Name;Name    
  2494.  
  2495. Object ID (H, R)    Object_ID;ObjectID    
  2496.  
  2497. Text Font    Text_Font    see Font
  2498.  
  2499. Text Settings    Text_Settings    see Common Chart Object properties
  2500.  
  2501. Value (H)    Value;Contents of the textbox    
  2502.  
  2503.  
  2504.  
  2505. Example
  2506.  
  2507. {SetProperty Box_Settings;"Thick outline 1;0;0;0"}
  2508.  
  2509. Notes
  2510.  
  2511.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2512.   
  2513.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  2514.   
  2515. Fixed Chart Object properties
  2516.  
  2517. A fixed object in a chart is an object not created with the Chart toolbar. See Chart Window Properties and Chart Background Properties for chart properties. For a list of drawn chart objects (such as arrows), see Chart Annotation Object Properties.
  2518.  
  2519. To view properties, arguments, and syntax for the following fixed chart objects, choose from the following list:
  2520.  
  2521. Area Fill
  2522.  
  2523. Area Series
  2524.  
  2525. Axis Title
  2526.  
  2527. Bar Series
  2528.  
  2529. Bullet Series
  2530.  
  2531. Chart Background
  2532.  
  2533. Chart Legend
  2534.  
  2535. Chart Pane
  2536.  
  2537. Chart Subtitle
  2538.  
  2539. Chart Title Box
  2540.  
  2541. Chart Window
  2542.  
  2543. Column Chart
  2544.  
  2545. Float Series
  2546.  
  2547. Line Series
  2548.  
  2549. Map Legend
  2550.  
  2551. Map Properties
  2552.  
  2553. Pie Chart
  2554.  
  2555. Series Label
  2556.  
  2557. X-Axis
  2558.  
  2559. Y-Axis
  2560.  
  2561. Fixed Chart Object Names
  2562.  
  2563. The following table lists the names for the objects in a fixed chart:
  2564.  
  2565.  
  2566.  
  2567. Property    Description
  2568.  
  2569. G$Base    Base of a 3-D chart
  2570.  
  2571. G$BulletSeries[n]    nth level of bulleted text in a bullet chart;the first level is 1, the second is 2
  2572.  
  2573. G$Graph    Background of the chart window
  2574.  
  2575. G$LeftWall    Left wall of a 3-D chart grid
  2576.  
  2577. G$Legend    Chart legend
  2578.  
  2579. G$Series[x,y]    yth data point of the xth series in the chart
  2580.  
  2581. G$SeriesLabel    Series labels
  2582.  
  2583. G$Title    Title, subtitle, and title box of the chart
  2584.  
  2585. G$X1Axis    x-axis
  2586.  
  2587. G$X1Title    x-axis title
  2588.  
  2589. G$Y1Axis    Primary y-axis
  2590.  
  2591. G$Y1Title    Primary y-axis title
  2592.  
  2593. G$Y2Axis    Secondary y-axis
  2594.  
  2595. G$Y2Title    Secondary y-axis title
  2596.  
  2597. Area Fill properties
  2598.  
  2599. Syntax
  2600.  
  2601. [NBName]ChartName:ObjName.Property
  2602.  
  2603. Description
  2604.  
  2605. Lets you specify the area fill properties.
  2606.  
  2607. The following table lists properties and syntax for the Area Fill object:
  2608.  
  2609.  
  2610.  
  2611. Property    Syntax    Description
  2612.  
  2613. Area Fill    [NBName]ChartName:ObjName.Property    NBName  is the name of the active notebook
  2614.  
  2615. ChartName is the name of the chart containing the object
  2616.  
  2617. ObjName is either the object ID number or the name of the object
  2618.  
  2619. Property is one of the strings listed in the Argument column of the dialog control property tables
  2620.  
  2621. Border Settings    Border_Setting s;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2622.  
  2623. Fill Settings    Fill_Settings    see Common Chart Object properties
  2624.  
  2625.  
  2626.  
  2627. Example
  2628.  
  2629. {SelectObject "G$RightWall"}
  2630.  
  2631. {SetProperty Fill_Settings;"Pattern;Horizontal Grid;;172;87;86;255;255;255"}
  2632.  
  2633. Area Series properties
  2634.  
  2635. Syntax
  2636.  
  2637. [NBName]ChartName:ObjName.Property
  2638.  
  2639. Description
  2640.  
  2641. Lets you specify the area series properties.
  2642.  
  2643. The following table lists properties and syntax for the Area Series object:
  2644.  
  2645.  
  2646.  
  2647. Property    Syntax    Description
  2648.  
  2649. Area Series    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2650.  
  2651. ChartName is the name of the chart containing the object
  2652.  
  2653. ObjName is either the object ID number or the name of the object
  2654.  
  2655. Property is one of the strings listed in the Argument column of the dialog control property tables
  2656.  
  2657. Analyze    Analyze;None | Aggregration | Moving Average | Linear Fit | Exponential Fit,...    Note: If Aggregration, other arguments are:...<Table>, Show in Legend?(0 | 1), Days | Weeks | Months | Quarters | Years, Weeks | Months | Quarters | Years, SUM | AVG | STD | STDS | MIN | MAX | VAR | VARS
  2658.  
  2659.         Note: If Moving Average, other arguments are:...<Table>, Show in Legend?(0 | 1), Period, None | Standard
  2660.  
  2661.         Note: If Linear Fit or Exponential Fit, other arguments are:...<Table>, Show in Legend?(0 | 1)
  2662.  
  2663. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2664.  
  2665. Fill Settings    Fill_Settings    see Common Chart Object properties
  2666.  
  2667. Series Options    Series_Options;DataSeries, LabelSeries, Legend    
  2668.  
  2669. Axis Title properties
  2670.  
  2671. Syntax
  2672.  
  2673. [NBName]ChartName:ObjName.Property
  2674.  
  2675. Description
  2676.  
  2677. Lets you specify the axis title properties.
  2678.  
  2679. The following table lists properties and syntax for the Axis Title object:
  2680.  
  2681.  
  2682.  
  2683. Property    Syntax    Description
  2684.  
  2685. Axis Title    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2686.  
  2687. ChartName is the name of the chart containing the object
  2688.  
  2689. ObjName is either the object ID number or the name of the object
  2690.  
  2691. Property is one of the strings listed in the Argument column of the dialog control property tables
  2692.  
  2693. Text Font    Text_Font    see Font
  2694.  
  2695. Text Settings    Text_Settings    see Common Chart Object properties
  2696.  
  2697. Title    Title;Title    
  2698.  
  2699.  
  2700.  
  2701. Example
  2702.  
  2703. {SelectObject G$Y1Axis}
  2704.  
  2705. {SetProperty Text_Font;"Arial;18;Yes;No;No;No"}
  2706.  
  2707. Bar Series properties
  2708.  
  2709. Syntax
  2710.  
  2711. [NBName]ChartName:ObjName.Property
  2712.  
  2713. Description
  2714.  
  2715. Lets you specify the bar series properties.
  2716.  
  2717. The following table lists properties and syntax for the Bar Series object:
  2718.  
  2719.  
  2720.  
  2721. Property    Syntax    Description
  2722.  
  2723. Bar Series    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2724.  
  2725. ChartName is the name of the chart containing the object
  2726.  
  2727. ObjName is either the object ID number or the name of the object
  2728.  
  2729. Property is one of the strings listed in the Argument column of the dialog control property tables
  2730.  
  2731. Analyze    None | Aggregration | Moving Average | Linear Fit | Exponential Fit,...    Note: If Aggregration, other arguments are:...<Table>, Show in Legend?(0 | 1), Days | Weeks | Months | Quarters | Years, Weeks | Months | Quarters | Years, SUM | AVG | STD | STDS | MIN | MAX | VAR | VARS
  2732.  
  2733.         Note: If Moving Average, other arguments are:...<Table>, Show in Legend?(0 | 1), Period, None|Standard
  2734.  
  2735.         Note: If Linear Fit or Exponential Fit, other arguments are:...<Table>, Show in Legend?(0 | 1)
  2736.  
  2737. Bar Options    Width%, Margin%, No | Partial | Full    
  2738.  
  2739. Border Settings    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2740.  
  2741. Fill Settings    see Common Chart Object properties    
  2742.  
  2743. Riser Style    Style(1 | 2 | 3 | 4), NumberOfFaces(0 | 4 | 6 | 8)    
  2744.  
  2745.     Note: Riser Style is available only for 3-D bar charts    
  2746.  
  2747. Series Options    DataSeries, LabelSeries, Legend, Bar | Line | Area | Default, Primary | Secondary    
  2748.  
  2749.  
  2750.  
  2751. Example
  2752.  
  2753. {SelectObject "G$Series[3,6]"}
  2754.  
  2755. {SetProperty Riser_Style;"3;4"}
  2756.  
  2757. Bullet Series properties
  2758.  
  2759. Syntax
  2760.  
  2761. [NBName]ChartName:ObjName.Property
  2762.  
  2763. Description
  2764.  
  2765. Lets you specify the bullet series properties.
  2766.  
  2767. The following table lists properties and syntax for the Bullet Series object:
  2768.  
  2769.  
  2770.  
  2771. Property    Syntax    Description
  2772.  
  2773. Bullet Series    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2774.  
  2775. ChartName is the name of the chart containing the object
  2776.  
  2777. ObjName is either the object ID number or the name of the object
  2778.  
  2779. Property is one of the strings listed in the Argument column of the dialog control property tables
  2780.  
  2781. Bullet Color    see Color    
  2782.  
  2783. Bullet Indentation    BeforeBullet (0-500), AfterBullet (0-500), HangingIndent?(0|1)    
  2784.  
  2785. Bullet Style    BulletStyle, BulletSize(0-32)    
  2786.  
  2787. Line Spacing    SpaceBefore(0-500), SpaceAfter(0-500)    
  2788.  
  2789. Text Font    see Font    
  2790.  
  2791. Text Settings    see Common Chart Object properties    
  2792.  
  2793.  
  2794.  
  2795. Example
  2796.  
  2797. {SelectObject G$BulletSeries[1]}
  2798.  
  2799. {SetProperty Bullet_Style;"8;22"}
  2800.  
  2801. Column Chart properties
  2802.  
  2803. Syntax
  2804.  
  2805. [NBName]ChartName:ObjName.Property
  2806.  
  2807. Description
  2808.  
  2809. Lets you specify the column chart properties.
  2810.  
  2811. The following table lists properties and syntax for the Column Chart object:
  2812.  
  2813.  
  2814.  
  2815. Property    Syntax    Description
  2816.  
  2817. Column Chart    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2818.  
  2819. ChartName is the name of the chart containing the object
  2820.  
  2821. ObjName is either the object ID number or the name of the object
  2822.  
  2823. Property is one of the strings listed in the Argument column of the dialog control property tables
  2824.  
  2825. Border Settings    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2826.  
  2827. Fill Settings    see Common Chart Object properties    
  2828.  
  2829. Label Options    LabelSeries, Currency | Value | Percent | None, ShowTick    
  2830.  
  2831. Text Font    see Font    
  2832.  
  2833. Text Settings    see Common Chart Object properties    
  2834.  
  2835.  
  2836.  
  2837. Example
  2838.  
  2839. {SelectObject "G$Series[1,4]"}
  2840.  
  2841. {SetProperty Border_Settings;"S0W2;0;128;255"}
  2842.  
  2843. Float Series properties
  2844.  
  2845. Syntax
  2846.  
  2847. [NBName]ChartName:ObjName.Property
  2848.  
  2849. Description
  2850.  
  2851. Lets you specify the float series properties.
  2852.  
  2853. The following table lists properties and syntax for the Float Series object:
  2854.  
  2855.  
  2856.  
  2857. Property    Syntax    Description
  2858.  
  2859. Float Series    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2860.  
  2861. ChartName is the name of the chart containing the object
  2862.  
  2863. ObjName is either the object ID number or the name of the object
  2864.  
  2865. Property is one of the strings listed in the Argument column of the dialog control property tables
  2866.  
  2867. Analyze    None | Aggregration | Moving Average | Linear Fit | Exponential Fit,...    Note: If Aggregration, other arguments are:...<Table>, Show in Legend?(0 | 1), Days | Weeks | Months | Quarters | Years, Weeks | Months | Quarters | Years, SUM | AVG | STD | STDS | MIN | MAX | VAR | VARS
  2868.  
  2869.         Note: If Moving Average, other arguments are:...<Table>, Show in Legend?(0 | 1), Period, None|Standard
  2870.  
  2871.         Note: If Linear Fit or Exponential Fit, other arguments are:...<Table>, Show in Legend?(0 | 1)
  2872.  
  2873. Border Settings    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2874.  
  2875. Fill Settings    see Common Chart Object properties    
  2876.  
  2877. Float Style    Style(0 | 1 | 2 | 3 | 4), NumberOfFaces(0 | 4 | 6 | 8), Size(8-32)    
  2878.  
  2879. Series Options    DataBlock, LabelBlock, Legend, Bar | Line | Area | Default, Primary | Secondary    
  2880.  
  2881.  
  2882.  
  2883. Example
  2884.  
  2885. {SelectObject "G$[1,3]"}
  2886.  
  2887. {SetProperty Analyze;"Aggregation;;No;Days;Weeks;Sum"}
  2888.  
  2889. Chart Pane properties
  2890.  
  2891. Syntax
  2892.  
  2893. [NBName]ChartName:ObjName.Property
  2894.  
  2895. Description
  2896.  
  2897. Lets you specify the chart pane properties.
  2898.  
  2899. The following table lists properties and syntax for the Chart Pane object:
  2900.  
  2901.  
  2902.  
  2903. Property    Syntax    Description
  2904.  
  2905. Chart Pane    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2906.  
  2907. ChartName is the name of the chart containing the object
  2908.  
  2909. ObjName is either the object ID number or the name of the object
  2910.  
  2911. Property is one of the strings listed in the Argument column of the dialog control property tables
  2912.  
  2913. Border Options    Left, Top, Right, Bottom, Grids on Top    
  2914.  
  2915. Border Style    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  2916.  
  2917. Dimension    see Dimension    
  2918.  
  2919. Fill Settings    see Common Chart Object properties    
  2920.  
  2921.  
  2922.  
  2923. Example
  2924.  
  2925. {SelectObject G$Pane}
  2926.  
  2927. {SetProperty Border_Position;"Yes;Yes;Yes;Yes;Yes"}
  2928.  
  2929. Chart Background properties
  2930.  
  2931. Syntax
  2932.  
  2933. [NBName]ChartName:ObjName.Property
  2934.  
  2935. Description
  2936.  
  2937. Lets you specify the chart background properties.
  2938.  
  2939. The following table lists properties and syntax for the Chart Background object:
  2940.  
  2941.  
  2942.  
  2943. Property    Syntax    Description
  2944.  
  2945. Chart Background    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2946.  
  2947. ChartName is the name of the chart containing the object
  2948.  
  2949. ObjName is either the object ID number or the name of the object
  2950.  
  2951. Property is one of the strings listed in the Argument column of the dialog control property tables
  2952.  
  2953. Box Settings    No box | Single outline | Rounded corners | Double outline | Thick outline 1 | Thick rounded corners | Three dimensional | Thick outline 2 | Bevel out | Shadowed | Thick outline 3 | Bevel in, Red, Blue, Green    
  2954.  
  2955. Chart Button    GotoSlide?, SlideName, Effect, Duration, Slow | Med | Fast, Overlay?, RunMacro?, MacroText    
  2956.  
  2957. Fill Settings    see Common Chart Object properties    
  2958.  
  2959. Name (H)    Name    
  2960.  
  2961.  
  2962.  
  2963. Example
  2964.  
  2965. {SelectObject}
  2966.  
  2967. {SetProperty Chart_Button;"No;;Cut;0;Fast;No;Yes;No;Yes;{A:E1}"}
  2968.  
  2969. Note
  2970.  
  2971.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  2972.   
  2973. Chart Subtitle properties
  2974.  
  2975. Syntax
  2976.  
  2977. [NBName]ChartName:ObjName.Property
  2978.  
  2979. Description
  2980.  
  2981. Lets you specify the chart subtitle properties.
  2982.  
  2983. The following table lists properties and syntax for the Chart Subtitle object:
  2984.  
  2985.  
  2986.  
  2987. Property    Syntax    Description
  2988.  
  2989. Chart Subtitle    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  2990.  
  2991. ChartName is the name of the chart containing the object
  2992.  
  2993. ObjName is either the object ID number or the name of the object
  2994.  
  2995. Property is one of the strings listed in the Argument column of the dialog control property tables
  2996.  
  2997. Subtitle Font    see Font    
  2998.  
  2999. Subtitle Text Settings    see Common Chart Object properties    
  3000.  
  3001.  
  3002.  
  3003. Example
  3004.  
  3005. {SelectObject G$Title}
  3006.  
  3007. {SetProperty Subtitle_Font;"Arial;24;Yes;No;No;No"}
  3008.  
  3009. Chart Title Box properties
  3010.  
  3011. Syntax
  3012.  
  3013. [NBName]ChartName:ObjName.Property
  3014.  
  3015. Description
  3016.  
  3017. Lets you specify the chart title box properties.
  3018.  
  3019. The following table lists properties and syntax for the Chart Title Box object:
  3020.  
  3021.  
  3022.  
  3023. Property    Syntax    Description
  3024.  
  3025. Chart Title Box    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3026.  
  3027. ChartName is the name of the chart containing the object
  3028.  
  3029. ObjName is either the object ID number or the name of the object
  3030.  
  3031. Property is one of the strings listed in the Argument column of the dialog control property tables
  3032.  
  3033. Alignment    Left | Center | Right    
  3034.  
  3035. Border Color    see Color    
  3036.  
  3037. Box Settings    No box | Single outline | Rounded corners | Double outline | Thick outline 1 | Thick rounded corners | Three dimensional | Thick outline 2 | Bevel out | Shadowed | Thick outline 3 | Bevel in, Red, Blue, Green    
  3038.  
  3039. Dimension    see Dimension    
  3040.  
  3041. Fill Settings    see Common Chart Object properties    
  3042.  
  3043. Name (H)    Name    
  3044.  
  3045. Text Font    see Font    
  3046.  
  3047. Text Settings    see Common Chart Object properties    
  3048.  
  3049.  
  3050.  
  3051. Example
  3052.  
  3053. {SelectObject G$Title}
  3054.  
  3055. {SetProperty Alignment;Left"}
  3056.  
  3057. Note
  3058.  
  3059.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  3060.   
  3061. Chart Window properties
  3062.  
  3063. Syntax
  3064.  
  3065. [NBName]ChartName:ObjName.Property
  3066.  
  3067. Description
  3068.  
  3069. Lets you specify the chart window properties.
  3070.  
  3071. The following table lists properties and syntax for the Chart Window object:
  3072.  
  3073.  
  3074.  
  3075. Property    Syntax    Description
  3076.  
  3077. Chart Window    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3078.  
  3079. ChartName is the name of the chart containing the object
  3080.  
  3081. ObjName is either the object ID number or the name of the object
  3082.  
  3083. Property is one of the strings listed in the Argument column of the dialog control property tables
  3084.  
  3085. Aspect Ratio    Floating Chart | Screen Slide | 35mm Slide | Printer Preview | Full Extent    
  3086.  
  3087. Grid    GridSize, DisplayGrid, SnapToGrid    
  3088.  
  3089.  
  3090.  
  3091. Example
  3092.  
  3093. {SetProperty Aspect_Ratio;"35mm Slide"}
  3094.  
  3095. Chart Legend properties
  3096.  
  3097. Syntax
  3098.  
  3099. [NBName]ChartName:ObjName.Property
  3100.  
  3101. Description
  3102.  
  3103. Lets you specify the chart legend properties.
  3104.  
  3105. The following table lists properties and syntax for the Chart Legend object:
  3106.  
  3107.  
  3108.  
  3109. Property    Syntax    Description
  3110.  
  3111. Legend    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3112.  
  3113. ChartName is the name of the chart containing the object
  3114.  
  3115. ObjName is either the object ID number or the name of the object
  3116.  
  3117. Property is one of the strings listed in the Argument column of the dialog control property tables
  3118.  
  3119. Box Settings    No box | Single outline | Rounded corners | Double outline | Thick outline 1 | Thick rounded corners | Three dimensional | Thick outline 2 | Bevel out | Shadowed | Thick outline 3 | Bevel in, Red, Blue, Green    
  3120.  
  3121. Dimension (H)    see Dimension    
  3122.  
  3123. Fill Settings    see Common Chart Object properties    
  3124.  
  3125. Legend Position    None | Bottom | Right    
  3126.  
  3127. Text Font    see Font    
  3128.  
  3129. Text Settings    see Common Chart Object properties    
  3130.  
  3131.  
  3132.  
  3133. Example
  3134.  
  3135. {SelectObject G$Legend}
  3136.  
  3137. {SetProperty Legend_Position;Bottom"}
  3138.  
  3139. Note
  3140.  
  3141.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  3142.   
  3143. Map Legend properties
  3144.  
  3145. Syntax
  3146.  
  3147. [NBName]ChartName:ObjName.Property
  3148.  
  3149. Description
  3150.  
  3151. Lets you specify the map legend properties.
  3152.  
  3153. The following table lists properties and syntax for the Map Legend object:
  3154.  
  3155.  
  3156.  
  3157. Property    Syntax    Description
  3158.  
  3159. Map Legend    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3160.  
  3161. ChartName is the name of the chart containing the object
  3162.  
  3163. ObjName is either the object ID number or the name of the object
  3164.  
  3165. Property is one of the strings listed in the Argument column of the dialog control property tables
  3166.  
  3167. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  3168.  
  3169. Colors    Colors;Ranges (0-6), ShowLegend? (Yes | No), ExactMatch? (Yes | No), SetValuesManually? (Yes | No), MaxValue1, Red, Blue, Green, MaxValue2, Red, Blue, Green, MaxValue3, Red, Blue, Green, MaxValue4, Red, Blue, Green, MaxValue5, Red, Blue, Green, MaxValue6, Red, Blue, Green    
  3170.  
  3171. Dimension (H)    Dimension    see Dimension
  3172.  
  3173. Fill Settings    Fill_Settings    see Common Chart Object properties
  3174.  
  3175. Font    Font;Font (see Font), Red, Blue, Green    
  3176.  
  3177. Legend Position    Legend_Position;None | Bottom | Right    
  3178.  
  3179. Patterns    Patterns;Ranges (0-6), ShowLegend? (Yes | No), ExactMatch? (Yes | No), SetValuesManually? (Yes | No), Value1, Pattern (0-6), Value2, Pattern (0-6), Value3, Pattern (0-6), Value4, Pattern (0-6), Value5, Pattern (0-6), Value6, Pattern (0-6)    
  3180.  
  3181. Title    Title;Title, DisplayTitle (Yes | No), Font (see Font), Red, Blue, Green    
  3182.  
  3183.  
  3184.  
  3185. Example
  3186.  
  3187. {SetProperty Title;"No;Arial;18;No;No;No;No;0;0;0"}
  3188.  
  3189. Note
  3190.  
  3191.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  3192.   
  3193. Line Series properties
  3194.  
  3195. Syntax
  3196.  
  3197. [NBName]ChartName:ObjName.Property
  3198.  
  3199. Description
  3200.  
  3201. Lets you specify the line series properties.
  3202.  
  3203. The following table lists properties and syntax for the Line Series object:
  3204.  
  3205.  
  3206.  
  3207. Property    Syntax    Description
  3208.  
  3209. Line Series    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3210.  
  3211. ChartName is the name of the chart containing the object
  3212.  
  3213. ObjName is either the object ID number or the name of the object
  3214.  
  3215. Property is one of the strings listed in the Argument column of the dialog control property tables
  3216.  
  3217. Analyze    Analyze;None | Aggregration | Moving Average | Linear Fit | Exponential Fit,...    Note: If Aggregration, other arguments are:...<Table>, Show in Legend?(0 | 1), Days | Weeks | Months | Quarters | Years, Weeks | Months | Quarters | Years, SUM | AVG | STD | STDS | MIN | MAX | VAR | VARS
  3218.  
  3219.         Note: If Moving Average, other arguments are:...<Table>, Show in Legend?(0 | 1), Period, None|Standard
  3220.  
  3221.         Note: If Linear Fit or Exponential Fit, other arguments are:...<Table>, Show in Legend?(0 | 1)
  3222.  
  3223. Fill Settings    Fill_Settings;    
  3224.  
  3225. Line Settings    Line_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  3226.  
  3227. Marker Style    Marker_Style;M00 | M01 | M02 | M03 | M04 | M05 | M06 | M07 | M08 | M09 | M10 | M11 | M12 | M13 | M14 | M15, MarkerWeight, AutoSize?(0 | 1)    
  3228.  
  3229. Series Options    Series_Options;DataBlock, LabelBlock, Legend, Bar | Line | Area | Default, Primary | Secondary    
  3230.  
  3231.  
  3232.  
  3233. Example
  3234.  
  3235. {SelectObject "G$Series[1,1]"}
  3236.  
  3237. {SetProperty Marker_Style;M02;5;1"}
  3238.  
  3239. Map properties
  3240.  
  3241. Syntax
  3242.  
  3243. [NBName]ChartName:ObjName.Property
  3244.  
  3245. Description
  3246.  
  3247. Lets you specify the map properties.
  3248.  
  3249. The following table lists properties and syntax for the Map object:
  3250.  
  3251.  
  3252.  
  3253. Property    Syntax    Description
  3254.  
  3255. Map    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3256.  
  3257. ChartName is the name of the chart containing the object
  3258.  
  3259. ObjName is either the object ID number or the name of the object
  3260.  
  3261. Property is one of the strings listed in the Argument column of the dialog control property tables
  3262.  
  3263. Font    Font;Font (see Font), Red, Blue, Green    
  3264.  
  3265. Pin Symbol    Pin_Symbol;DisplayPinLabels? (Yes | No), DisplayPinSymbol? (Yes | No), Font (see Font), Red, Blue, Green, Symbol (0-239)    
  3266.  
  3267. Redraw Options    Redraw_Options;Automatic | Manual    
  3268.  
  3269.  
  3270.  
  3271. Example
  3272.  
  3273. {SetProperty Redraw_Options;Manual}
  3274.  
  3275. Pie Chart properties
  3276.  
  3277. Syntax
  3278.  
  3279. [NBName]ChartName:ObjName.Property
  3280.  
  3281. Description
  3282.  
  3283. Lets you specify the pie chart properties.
  3284.  
  3285. The following table lists properties and syntax for the Pie Chart object:
  3286.  
  3287.  
  3288.  
  3289. Property    Syntax    Description
  3290.  
  3291. Pie Chart    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3292.  
  3293. ChartName is the name of the chart containing the object
  3294.  
  3295. ObjName is either the object ID number or the name of the object
  3296.  
  3297. Property is one of the strings listed in the Argument column of the dialog control property tables
  3298.  
  3299. Border Settings    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  3300.  
  3301. Explode Slice    Distance, Explode    
  3302.  
  3303. Fill Settings    see Common Chart Object properties    
  3304.  
  3305. Label Options    Series, Currency | Value | Percent | None, ShowTick    
  3306.  
  3307. Text Font    see Font    
  3308.  
  3309. Text Settings    see Common Chart Object properties    
  3310.  
  3311.  
  3312.  
  3313. Example
  3314.  
  3315. {SelectObject "G$Series[1,1]"}
  3316.  
  3317. {SetProperty Explode_Slice;"25"}
  3318.  
  3319. Series Label properties
  3320.  
  3321. Syntax
  3322.  
  3323. [NBName]ChartName:ObjName.Property
  3324.  
  3325. Description
  3326.  
  3327. Lets you specify the series label properties.
  3328.  
  3329. The following table lists properties and syntax for the Series Label object.
  3330.  
  3331.  
  3332.  
  3333. Property    Syntax    Description
  3334.  
  3335. Series Label    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3336.  
  3337. ChartName is the name of the chart containing the object
  3338.  
  3339. ObjName is either the object ID number or the name of the object
  3340.  
  3341. Property is one of the strings listed in the Argument column of the dialog control property tables
  3342.  
  3343. Format    Format, Precision | Type    
  3344.  
  3345. Label Alignment    Above | Top | Middle | Below (for bar charts);Above | Center | Below | Left | Right (for area and line charts)    
  3346.  
  3347. Text Font    see Font    
  3348.  
  3349. Text Style    see Common Chart Object properties    
  3350.  
  3351.  
  3352.  
  3353. Example
  3354.  
  3355. {SelectObject G$SeriesLabel[2]}
  3356.  
  3357. {SetProperty Label_Alignment;Middle}
  3358.  
  3359. X-Axis properties
  3360.  
  3361. Syntax
  3362.  
  3363. [NBName]ChartName:ObjName.Property
  3364.  
  3365. Description
  3366.  
  3367. Lets you specify the X-Axis properties.
  3368.  
  3369. The following table lists properties and syntax for the X-Axis object:
  3370.  
  3371.  
  3372.  
  3373. Property    Syntax    Description
  3374.  
  3375. X-Axis    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3376.  
  3377. ChartName is the name of the chart containing the object
  3378.  
  3379. ObjName is either the object ID number or the name of the object
  3380.  
  3381. Property is one of the strings listed in the Argument column of the dialog control property tables
  3382.  
  3383. Major Grid Style    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Green, Blue    
  3384.  
  3385. Minor Grid Style    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Green, Blue    Note: This property only appears when inspecting an XY chart
  3386.  
  3387. Numeric Format    Format, Precision | Type    Note: This property only appears when inspecting an XY chart
  3388.  
  3389. Scale    Normal | Log, Automatic, High, Low, Increment, #Minors, ShowUnits    Note: This property only appears when inspecting an XY chart
  3390.  
  3391. Text Font    see Font    
  3392.  
  3393. Text Settings    see Common Chart Object properties    
  3394.  
  3395. Tick Options    None | Below | Above | Across, DisplayLabels, NumRows, NoOverlap, #OfLabelsToSkip, Limit    
  3396.  
  3397. X-Axis Series    SeriesBlock    
  3398.  
  3399.  
  3400.  
  3401. Example
  3402.  
  3403. {SelectObject G$X1Axis
  3404.  
  3405. {SetProperty X-Axis Series;"A:A8..A11"}
  3406.  
  3407. Y-Axis properties
  3408.  
  3409. Syntax
  3410.  
  3411. [NBName]ChartName:ObjName.Property
  3412.  
  3413. Description
  3414.  
  3415. Lets you specify the Y-Axis properties.
  3416.  
  3417. The following table lists properties and syntax for the Y-Axis object:
  3418.  
  3419.  
  3420.  
  3421. Property    Syntax    Description
  3422.  
  3423. Y-Axis    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3424.  
  3425. ChartName is the name of the chart containing the object
  3426.  
  3427. ObjName is either the object ID number or the name of the object
  3428.  
  3429. Property is one of the strings listed in the Argument column of the dialog control property tables
  3430.  
  3431. Major Grid Style    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Green, Blue    
  3432.  
  3433. Minor Grid Style    S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Green, Blue    
  3434.  
  3435. Numeric Format    Format, Precision | Type    
  3436.  
  3437. Scale    Normal | Log, Automatic, High, Low, Increment, #Minors, ShowUnits    Note: An additional setting, ZeroLine, appears if the chart type is Variance.
  3438.  
  3439. Text Font    see Font    
  3440.  
  3441. Text Settings    see Common Chart Object properties    
  3442.  
  3443. Tick Options    None | Left | Right | Across, DisplayLabels, LengthLimit, Limit    
  3444.  
  3445.  
  3446.  
  3447. Example
  3448.  
  3449. {SelectObject G$Y1Axis}
  3450.  
  3451. {SetProperty Tick_Options;"Right;Yes;No;3"}
  3452.  
  3453. Notebook Object properties
  3454.  
  3455. To view properties, arguments, and syntax for the following notebook objects, choose from the following list:
  3456.  
  3457. Arrow
  3458.  
  3459. Bitmap
  3460.  
  3461. Button
  3462.  
  3463. Chart
  3464.  
  3465. Ellipse
  3466.  
  3467. Line
  3468.  
  3469. Notebook
  3470.  
  3471. OLE
  3472.  
  3473. Picture
  3474.  
  3475. Rectangle
  3476.  
  3477. Rounded Rectangle
  3478.  
  3479. Selection
  3480.  
  3481. Text Box
  3482.  
  3483. Arrow Properties
  3484.  
  3485. Syntax
  3486.  
  3487. [NBName]Sheet:ObjName.Property
  3488.  
  3489. Description
  3490.  
  3491. Lets you specify the arrow properties.
  3492.  
  3493. The following table lists properties and syntax for the Arrow object:
  3494.  
  3495.  
  3496.  
  3497. Property    Syntax    Description
  3498.  
  3499. Arrow    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3500.  
  3501. Sheet is the name of the sheet containing the object
  3502.  
  3503. ObjName is either the object ID number or the name of the object
  3504.  
  3505. Property is one of the strings listed in the Argument column of the dialog control property tables
  3506.  
  3507. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  3508.  
  3509. Fill Settings    Fill_Settings    see Common Chart Object properties
  3510.  
  3511. Object Name    Object_Name;ObjName    
  3512.  
  3513. Protection    Protection;Yes | No    
  3514.  
  3515. Bitmap properties
  3516.  
  3517. Syntax
  3518.  
  3519. [NBName]Sheet:ObjName.Property
  3520.  
  3521. Description
  3522.  
  3523. Lets you specify the bitmap properties.
  3524.  
  3525. The following table lists properties and syntax for the Bitmap object:
  3526.  
  3527.  
  3528.  
  3529. Property    Syntax    Description
  3530.  
  3531. Bitmap    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3532.  
  3533. Sheet is the name of the sheet containing the object
  3534.  
  3535. ObjName is either the object ID number or the name of the object
  3536.  
  3537. Property is one of the strings listed in the Argument column of the dialog control property tables
  3538.  
  3539. Border Color    Border_Color    see Color
  3540.  
  3541. Box Type    Box_Type;None | Thin | Medium | Thick, DropShadow?(Yes | No), Transparent?(Yes | No)    
  3542.  
  3543. Box Type    Box_Type.Frame_Line_Style;None | Thin | Medium | Thick    
  3544.  
  3545. Drop Shadow    Box_Type.Drop_Shadow;Yes | No    
  3546.  
  3547. Transparent    Box_Type.Transparent;Yes | No    
  3548.  
  3549. Object Name    Object_Name;ObjName    
  3550.  
  3551. Cell properties
  3552.  
  3553. Syntax
  3554.  
  3555. [NBName]Sheet:ObjName.Property
  3556.  
  3557. Description
  3558.  
  3559. Lets you specify the cell properties.
  3560.  
  3561. The following table lists properties and syntax for the Cell object:
  3562.  
  3563.  
  3564.  
  3565. Property    Syntax    Description
  3566.  
  3567. Cell    [NBName]BlockAddress.Property    NBName  is the name of the active notebook
  3568.  
  3569. Sheet is the name of the sheet containing the object
  3570.  
  3571. ObjName is either the object ID number or the name of the object
  3572.  
  3573. Property is one of the strings listed in the Argument column of the dialog control property tables
  3574.  
  3575. Alignment    Alignment;General | Left | Right | Center | Center Across Block, Top | Center | Bottom, WrapText?(Yes | No), Horizontal | Vertical    
  3576.  
  3577. Horizontal    Alignment.Horizontal;General | Left | Right | Center | Center Across Block    
  3578.  
  3579. Orientation    Alignment.Orientation;Horizontal | Vertical    
  3580.  
  3581. Vertical    Alignment.Vertical;Top | Center | Bottom    
  3582.  
  3583. Wrap Text    Alignment.WrapText;Yes | No    
  3584.  
  3585. Column Width    Column_Width;Operation, WidthInTwips, ColSpacing    
  3586.  
  3587. Auto Width    Column_Width;Auto Width,, ExtraSpace    
  3588.  
  3589. Reset Width    Column_Width;Reset Width    
  3590.  
  3591. Set Width    Column_Width;Set Width, NewWidthInTwips    
  3592.  
  3593. Constraints    Constraints;Protect | Unprotect, General | Labels Only | Dates Only    
  3594.  
  3595. Data Entry Input    Constraints.Data_Entry_Input;General | Labels Only | Dates Only    
  3596.  
  3597. Protection    Constraints.Protection Protect|Unprotect    
  3598.  
  3599. Font    Font    see Font
  3600.  
  3601. Line Drawing    Line_Drawing;Left, Top, Right, Bottom, Vert, Horiz, LeftColor, TopColor, RightColor, BottomColor, VertColor, HorizColor    Note: The first six settings can take NoChange | Clear | Thin | Thick | Double;the last six settings can take 0-15;@PROPERTY and {GETPROPERTY} always return default Line Drawing property settings.
  3602.  
  3603. Number Value (H)    Number_Value;the value in the cell    
  3604.  
  3605. Numeric Format    Numeric_Format;Format, Precision | Type    
  3606.  
  3607. Reveal/Hide    Reveal/Hide;Row | Column, Reveal | Hide    
  3608.  
  3609. Row Height    Row_Height;Operation, Size    
  3610.  
  3611. Reset Height    Row_Height;Reset Height    
  3612.  
  3613. Set Height    Row_Height;Set Height, NewSize    
  3614.  
  3615. Selection (H, R)    Selection;the coordinates of the selected cells    
  3616.  
  3617. Shading    Shading;Color1, Color2, Blend    
  3618.  
  3619. Color Blend 1    Shading.Color_1;0-15    
  3620.  
  3621. Color Blend 2    Shading.Color_2;0-15    
  3622.  
  3623. Select Color Blend    Shading.Blend;Blend1 | Blend2 | Blend3 | Blend4 | Blend5 | Blend6 | Blend7    
  3624.  
  3625. String Value (H)    String_Value;the label in the cell    
  3626.  
  3627. Style (H)    Style;the named style of the active cells    
  3628.  
  3629. Text Color    Text_Color;0-15    
  3630.  
  3631. Value (H)    Value;the contents of the cell (as they appear on the input line)    
  3632.  
  3633.  
  3634.  
  3635. Example
  3636.  
  3637. {SETOBJECTPROPERTY "A:A23.Numeric_Format","Currency,2"}
  3638.  
  3639. Notes
  3640.  
  3641.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  3642.   
  3643.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  3644.   
  3645. Button properties
  3646.  
  3647. Syntax
  3648.  
  3649. [NBName]Sheet:ObjName.Property
  3650.  
  3651. Description
  3652.  
  3653. Lets you specify the button properties.
  3654.  
  3655. The following table lists properties and syntax for the Button object:
  3656.  
  3657.  
  3658.  
  3659. Property    Syntax    Description
  3660.  
  3661. Button    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3662.  
  3663. Sheet is the name of the sheet containing the object
  3664.  
  3665. ObjName is either the object ID number or the name of the object
  3666.  
  3667. Property is one of the strings listed in the Argument column of the dialog control property tables
  3668.  
  3669. Border Color    Border_Color    see Color
  3670.  
  3671. Box Type    Box_Type;None | Thin | Medium | Thick, DropShadow?(Yes | No)    
  3672.  
  3673. Box Type    Box_Type.Frame_Line_
  3674. Style;None | Thin | Medium | Thick    
  3675.  
  3676. Drop Shadow    Box_Type.Drop_Shadow;Yes | No    
  3677.  
  3678. Label Text    Label_Text;LabelText    
  3679.  
  3680. Macro    Macro;Macro    
  3681.  
  3682. Object Name    Object_Name;ObjName    
  3683.  
  3684.  
  3685.  
  3686. Example
  3687.  
  3688. {SetObjectProperty "A:Button1.border_color","0;128;255"}
  3689.  
  3690. Ellipse properties
  3691.  
  3692. Syntax
  3693.  
  3694. [NBName]Sheet:ObjName.Property
  3695.  
  3696. Description
  3697.  
  3698. Lets you specify the ellipse properties.
  3699.  
  3700. The following table lists properties and syntax for the Ellipse object:
  3701.  
  3702.  
  3703.  
  3704. Property    Syntax    Description
  3705.  
  3706. Ellipse    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3707.  
  3708. Sheet is the name of the sheet containing the object
  3709.  
  3710. ObjName is either the object ID number or the name of the object
  3711.  
  3712. Property is one of the strings listed in the Argument column of the dialog control property tables
  3713.  
  3714. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  3715.  
  3716. Fill Settings    Fill_Settings    see Common Chart Object properties
  3717.  
  3718. Object Name    Object_Name;ObjName    
  3719.  
  3720. Protection    Protection;Yes | No    
  3721.  
  3722. Chart/Map properties
  3723.  
  3724. Syntax
  3725.  
  3726. [NBName]Sheet:ObjName.Property
  3727.  
  3728. Description
  3729.  
  3730. Lets you specify the chart and map properties.
  3731.  
  3732. The following table lists properties and syntax for the Chart object and the Map object:
  3733.  
  3734.  
  3735.  
  3736. Property    Syntax    Description
  3737.  
  3738. Chart    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3739.  
  3740. Sheet is the name of the sheet containing the object
  3741.  
  3742. ObjName is either the object ID number or the name of the object
  3743.  
  3744. Property is one of the strings listed in the Argument column of the dialog control property tables
  3745.  
  3746. Border Color    Border_Color    see Color
  3747.  
  3748. Box Type    Box_Type;None | Thin | Medium | Thick, DropShadow?(Yes | No), Transparent?(Yes | No)    
  3749.  
  3750. Box Type    Box_Type.Frame_Line_
  3751. Style;None | Thin | Medium | Thick    
  3752.  
  3753. Drop Shadow    Box_Type.Drop_Shadow;Yes | No    
  3754.  
  3755. Transparent    Box_Type.Transparent;Yes | No    
  3756.  
  3757. Object Name    Object_Name;ObjName    
  3758.  
  3759. Protection    Protection;Yes | No    
  3760.  
  3761. Source Chart/Map    Source_Chart/ Source_Map;Name    
  3762.  
  3763. Line properties
  3764.  
  3765. Syntax
  3766.  
  3767. [NBName]Sheet:ObjName.Property
  3768.  
  3769. Description
  3770.  
  3771. Lets you specify the line properties.
  3772.  
  3773. The following table lists properties and syntax for the Line object:
  3774.  
  3775.  
  3776.  
  3777. Property    Syntax    Description
  3778.  
  3779. Line    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3780.  
  3781. Sheet is the name of the sheet containing the object
  3782.  
  3783. ObjName is either the object ID number or the name of the object
  3784.  
  3785. Property is one of the strings listed in the Argument column of the dialog control property tables
  3786.  
  3787. Line Settings    Line_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  3788.  
  3789. Object Name    Object_Name;ObjName    
  3790.  
  3791. Protection    Protection;Yes | No    
  3792.  
  3793. Notebook properties
  3794.  
  3795. Syntax
  3796.  
  3797. [NBName].Property
  3798.  
  3799. Description
  3800.  
  3801. Lets you specify the notebook properties.
  3802.  
  3803. The following table lists properties and syntax for the Notebook object:
  3804.  
  3805.  
  3806.  
  3807. Property    Syntax    Description
  3808.  
  3809. Notebook    [NBName].Property    NBName  is the name of the active notebook
  3810.  
  3811. Property is one of the strings listed in the Argument column of the dialog control property tables
  3812.  
  3813. Display    Display;VertScroll?(Yes | No), HorzScroll?(Yes | No), Tabs?(Yes | No), Objects (Show All | Show Outline | Hide)    
  3814.  
  3815. Horizontal Scroll Bar    Display.Show_HorizontalScroller;Yes | No    
  3816.  
  3817. Objects    Display.Objects;Show All | Show Outline | Hide    
  3818.  
  3819. Sheet Tabs    Display.Show_Tabs;Yes | No    
  3820.  
  3821. Vertical Scroll Bar    Display.Show_VerticalScroller;Yes | No    
  3822.  
  3823. Group Mode (H)    Group_Mode;On enables Group Mode;Off disables group mode    
  3824.  
  3825. Macro Library    Macro_Library;Yes | No    
  3826.  
  3827. Palette    Palette;Color1, Color2, ..., Color16    
  3828.  
  3829. Color 1    Palette.Color_1    see Color
  3830.  
  3831. Color 2    Palette.Color_2    
  3832.  
  3833. Color 3    Palette.Color_3    
  3834.  
  3835. Color 4    Palette.Color_4    
  3836.  
  3837. Color 5    Palette.Color_5    
  3838.  
  3839. Color 6    Palette.Color_6    
  3840.  
  3841. Color 7    Palette.Color_7    
  3842.  
  3843. Color 8    Palette.Color_8    
  3844.  
  3845. Color 9    Palette.Color_9    
  3846.  
  3847. Color 10    Palette.Color_10    
  3848.  
  3849. Color 11    Palette.Color_11    
  3850.  
  3851. Color 12    Palette.Color_12    
  3852.  
  3853. Color 13    Palette.Color_13    
  3854.  
  3855. Color 14    Palette.Color_14    
  3856.  
  3857. Color 15    Palette.Color_15    
  3858.  
  3859. Color 16    Palette.Color_16    
  3860.  
  3861. Password Level    Password_Level;None | Low | Medium | High    
  3862.  
  3863. Recalc Settings    Recalc_Settings;Automatic | Manual | Background, Natural | Column-wise | Row-wise, Iterations, <CompileFormulas?(0 | 1)>, <AuditErrors?(0 | 1)>    
  3864.  
  3865. Statistics (R)    Statistics;Filename, Directory, Created(Date   Time), Last_Saved(Date   Time), Last_Saved_By, Revision_Number    
  3866.  
  3867. Summary    Summary;Title, Subject, Author, Keywords, Comments    
  3868.  
  3869. System    System;Yes | No    
  3870.  
  3871. Zoom Factor    Zoom_Factor;10-400    
  3872.  
  3873.  
  3874.  
  3875. Example
  3876.  
  3877. {Notebook.Zoom_Factor"200"}
  3878.  
  3879. Notes
  3880.  
  3881.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog. 
  3882.   
  3883.   If a property name is followed by (R), you cannot set it with a macro command or link command; it is a read only property.
  3884.   
  3885. OLE properties
  3886.  
  3887. Syntax
  3888.  
  3889. [NBName]Sheet:ObjName.Property
  3890.  
  3891. Description
  3892.  
  3893. Lets you specify the OLE properties.
  3894.  
  3895. The following table lists properties and syntax for the OLE object:
  3896.  
  3897.  
  3898.  
  3899. Property    Syntax    Description
  3900.  
  3901. OLE        NBName  is the name of the active notebook
  3902.  
  3903. Sheet is the name of the sheet containing the object
  3904.  
  3905. ObjName is either the object ID number or the name of the object
  3906.  
  3907. Property is one of the strings listed in the Argument column of the dialog control property tables
  3908.  
  3909. Border Color    Border_Color    see Color
  3910.  
  3911. Box Type    Box_Type;None | Thin | Medium | Thick, DropShadow?(Yes | No), Transparent?(Yes | No)    
  3912.  
  3913. Box Type    Box_Type.Frame_Line_Style;None | Thin | Medium | Thick    
  3914.  
  3915. Drop Shadow    Box_Type.Drop_Shadow;Yes | No    
  3916.  
  3917. Transparent    Box_Type.Transparent;Yes | No    
  3918.  
  3919. Object Name    Object_Name;ObjName    
  3920.  
  3921. OLE    OLE;AutoResize?(Yes | No), AutoLinkUpdate?(Yes | No)    
  3922.  
  3923. Protection    Protection;Yes | No    
  3924.  
  3925.  
  3926.  
  3927. Example
  3928.  
  3929. {Setobjectproperty "A:Embedded1.Box_Type";"Thick;Yes;Yes"}
  3930.  
  3931. Picture properties
  3932.  
  3933. Syntax
  3934.  
  3935. [NBName]Sheet:ObjName.Property
  3936.  
  3937. Description
  3938.  
  3939. Lets you specify the picture properties.
  3940.  
  3941. The following table lists properties and syntax for the Picture object:
  3942.  
  3943.  
  3944.  
  3945. Property    Syntax    Description
  3946.  
  3947. Picture        NBName  is the name of the active notebook
  3948.  
  3949. Sheet is the name of the sheet containing the object
  3950.  
  3951. ObjName is either the object ID number or the name of the object
  3952.  
  3953. Property is one of the strings listed in the Argument column of the dialog control property tables
  3954.  
  3955. Border Color    Border_Color    see Color
  3956.  
  3957. Box Type    Box_Type;None | Thin | Medium | Thick, DropShadow?(Yes | No), Transparent?(Yes | No)    
  3958.  
  3959. Box Type    Box_Type.Frame_Line_Style;None | Thin | Medium | Thick    
  3960.  
  3961. Drop Shadow    Box_Type.Drop_Shadow;Yes | No    
  3962.  
  3963. Transparent    Box_Type.Transparent;Yes | No    
  3964.  
  3965. Object Name    Object_Name;ObjName    
  3966.  
  3967. Protection    Protection;Yes | No    
  3968.  
  3969. Rectangle properties
  3970.  
  3971. Syntax
  3972.  
  3973. [NBName]Sheet:ObjName.Property
  3974.  
  3975. Description
  3976.  
  3977. Lets you specify the rectangle properties.
  3978.  
  3979. The following table lists properties and syntax for the Rectangle object:
  3980.  
  3981.  
  3982.  
  3983. Property    Syntax    Description
  3984.  
  3985. Rectangle    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  3986.  
  3987. Sheet is the name of the sheet containing the object
  3988.  
  3989. ObjName is either the object ID number or the name of the object
  3990.  
  3991. Property is one of the strings listed in the Argument column of the dialog control property tables
  3992.  
  3993. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  3994.  
  3995. Fill Settings    Fill_Settings    see Common Chart Object properties
  3996.  
  3997. Object Name    Object_Name;ObjName    
  3998.  
  3999. Protection    Protection;Yes | No    
  4000.  
  4001. Rounded Rectangle properties
  4002.  
  4003. Syntax
  4004.  
  4005. [NBName]Sheet:ObjName.Property
  4006.  
  4007. Description
  4008.  
  4009. Lets you specify the rounded rectangle properties.
  4010.  
  4011. The following table lists properties and syntax for the Rounded Rectangle object:
  4012.  
  4013.  
  4014.  
  4015. Property    Syntax    Description
  4016.  
  4017. Rounded Rectangle    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  4018.  
  4019. Sheet is the name of the sheet containing the object
  4020.  
  4021. ObjName is either the object ID number or the name of the object
  4022.  
  4023. Property is one of the strings listed in the Argument column of the dialog control property tables
  4024.  
  4025. Border Settings    Border_Settings;S0W1 | S0W2 | S0W3 | S0W4 | S1W1 | S2W1 | S3W1 | S4W1 | S5W1, Red, Blue, Green    
  4026.  
  4027. Fill Settings    Fill_Settings    see Common Chart Object properties
  4028.  
  4029. Object Name    Object_Name;ObjName    
  4030.  
  4031. Protection    Protection;Yes | No    
  4032.  
  4033. Text Box properties
  4034.  
  4035. Syntax
  4036.  
  4037. [NBName]Sheet:ObjName.Property
  4038.  
  4039. Description
  4040.  
  4041. Lets you specify the text box properties.
  4042.  
  4043. The following table lists properties and syntax for the Text Box object:
  4044.  
  4045.  
  4046.  
  4047. Property    Syntax    Description
  4048.  
  4049. Text Box    [NBName]Sheet:ObjName.Property    NBName  is the name of the active notebook
  4050.  
  4051. Sheet is the name of the sheet containing the object
  4052.  
  4053. ObjName is either the object ID number or the name of the object
  4054.  
  4055. Property is one of the strings listed in the Argument column of the dialog control property tables
  4056.  
  4057. Alignment    Alignment;Left | Right | Center, WordWrap, TabStops    
  4058.  
  4059. Box Settings    Box_Settings;No box | Single outline | Rounded corners | Double outline | Thick outline 1 | Thick rounded corners | Three dimensional | Thick outline 2 | Bevel out | Shadowed | Thick outline 3 | Bevel in, Red, Blue, Green    
  4060.  
  4061. Fill Settings    Fill_Settings    see Common Chart Object properties
  4062.  
  4063. Object Name    Object_Name;ObjName    
  4064.  
  4065. Protection    Protection;Yes | No    
  4066.  
  4067. Text Font    Text_Font    see Font
  4068.  
  4069. Text Settings    Text_Settings    see Common Chart Object properties
  4070.  
  4071. Objects Sheet Icon Properties
  4072.  
  4073. Lets you specify the objects sheet icon properties. When the Objects sheet is active you can change the properties of icons on the Objects sheet instead of the objects they represent.
  4074.  
  4075. The following table lists properties and syntax for the Objects Sheet Icon object:
  4076.  
  4077.  
  4078.  
  4079. Property    Syntax    Description
  4080.  
  4081. Chart Icon        
  4082.  
  4083. Name    Name;Name    
  4084.  
  4085. Dialog Icon        
  4086.  
  4087. Dimension    Dimension    see Dimension
  4088.  
  4089. Disabled    Disabled;Yes | No    
  4090.  
  4091. Grid Options    Grid_Options;Gridsize, GridShown, GridEnabled    
  4092.  
  4093. Name    Name;Name    
  4094.  
  4095. Position Adjust    Position_Adjust;Depend, LeftRel, TopRel, RightRel, BottomRel, CenterHor, CenterVer    
  4096.  
  4097. Title    Title;Title    
  4098.  
  4099. Value (H)    Value;the current settings of all dialog controls that have Process Value set to Yes    
  4100.  
  4101. Slide Show Icon        
  4102.  
  4103. Default Effect    Default_Effect;Effect, DisplayTime, Slow | Med | Fast, Overlay?(Yes | No), UseMasterSlide?(Yes | No), SkipSlide?(Yes | No)    
  4104.  
  4105. Master Slide    Master_Slide;SlideName    
  4106.  
  4107. Name    Name;Name    
  4108.  
  4109. Show Pointer    Show_Pointer;Yes | No    
  4110.  
  4111.  
  4112.  
  4113. Note
  4114.  
  4115.   If a property name is followed by (H), it is a hidden property and does not appear in the object's Property dialog.
  4116.   
  4117.  
  4118.  
  4119.