Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ValueDescription
TrackingSize@FM Delimited array of the currently set minimum and maximum heights and widths.
ExistingTrackingSize@FM Delimited array of the minimum and maximum heights and widths, when Set_Property was run.

See Also

CLIENTSIZE propertyMAXIMIZESIZE propertySIZE property

Example

Code Block
* This snippet of code will make a window non-resizable
 
CurSize = Get_Property(@Window, "SIZE")
MinW = CurSize<3>
MinH = CurSize<4>
MaxW = CurSize<3>
MaxH = CurSize<4>
x = Set_Property(@Window,"TRACKINGSIZE",MinW:@FM:MinH:@FM:MaxW:@FM:MaxH)