Whether the user can resize the specified control.
Button, Column, Computed Field, Graph, GroupBox, Line, OLE, Oval, Picture, Rectangle, Report, RoundRectangle, TableBlob, and Text controls
Describe and Modify argument:
"controlname.Resizeable { = value }"
Parameter |
Description |
---|---|
controlname |
The control within the DataWindow whose Resizeable setting you want to get or set. |
value |
A boolean number indicating whether controlname can be resized. Values are:
|
Select the control and set the value in the Properties window, Layout category.
When you make the control resizable, set the Border property to the resizable border so the user knows it is resizable.
[Visual Basic] setting = dw1.Describe("graph_1.Resizeable")
dw1.Modify("graph_1.Resizeable=1")
dw1.Modify("bitmap_1.Resizeable=0")