Page History
...
The EntitySize property can be used to adjust the size of an entity. Currently, entities are represented as columns, so this property will set the entities' widths. This property has no effect if the entities are autosized, so you must set the Autosize property to 0 first if you intend to set fixed sizes for your entities.
...
Code Block |
---|
// Set the size of all entities to 50 pixels Set_Property(@Window:".OLE_SCHEDULE", "OLE.EntitySize[All]", 50) // Get the size of a specific entity Size = Get_Property(@Window:".OLE_SCHEDULE", "OLE.EntitySize[":EntityID:"]") |