MDIWindow.MaxWidth

From Xojo Documentation

Property (As Integer )


aMDIWindow.MaxWidth = newIntegerValue
or
IntegerValue = aMDIWindow.MaxWidth

Supported for all project types and targets.

The maximum width to which the MDI window can be resized.

Example

This example sets several properties of the MDIWindow. It is in the Open event of the app.

app.MDIWindow.Height=300
app.MDIWindow.Width=450
app.MDIWindow.Left=15
app.MDIWindow.Top=10
app.MDIWindow.Title="MDIWindow Title"
app.MDIWindow.MinWidth=250
app.MDIWindow.MinHeight=100
app.MDIWindow.MaxHeight=400
app.MDIWindow.MaxWidth=600

app.MDIWindow.Visible=True