Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.32 KB

devenv-minimumwidth-property.md

File metadata and controls

49 lines (34 loc) · 1.32 KB
title description ms.author ms.date ms.topic author ms.reviewer
MinimumWidth Property
Specifies the minimum width that the control add-in can be shrunk to.
solsen
05/14/2024
reference
SusanneWindfeldPedersen
solsen

MinimumWidth Property

Version: Available or changed with runtime version 1.0.

Specifies the minimum width that the control add-in can be shrunk to. This setting only applies if the HorizontalShrink setting is specified.

Applies to

  • Control Add In

Value Type

  • Integer

Property Values

The default is 0. If HorizontalShrink is true but MinimumWidth is 0, the control add-in can shrink to nothing.

Dependent Property

This setting only applies if HorizontalShrink is set to true.

Remarks

Use this property when the visual content of the add-in is no longer usable below a certain size.

Example

RequestedWidth = 600;
HorizontalShrink = true;
MinimumWidth = 100;

See Also

Control Add-In Object