Enum Stretch
Describes how content is resized to fill its allocated space.
public enum Stretch
- Extension Methods
Fields
Fill = 1
The content is resized to fill the destination dimensions. The aspect ratio is not preserved.
None = 0
The content preserves its original size.
Uniform = 2
The content is resized to fit in the destination dimensions while preserving its native aspect ratio.
UniformToFill = 3
The content is resized to completely fill the destination rectangle while preserving its native aspect ratio. A portion of the content may not be visible if the aspect ratio of the content does not match the aspect ratio of the allocated space.