Table of Contents

Enum StretchType

Namespace
Stride.UI
Assembly
Stride.UI.dll

Describes how content is resized to fill its allocated space.

public enum StretchType

Fields

Fill = 4

The content is always resized to fill the destination dimensions. The aspect ratio is not preserved.

FillOnStretch = 3

The content is resized to fill the destination when stretched by its parent. It keeps its ratio otherwise.

None = 0

The content preserves its original size.

Uniform = 1

The content is resized to fit in the destination dimensions while it preserves its native aspect ratio.

UniformToFill = 2

The content is resized to fill the destination dimensions while it preserves its native aspect ratio. If the aspect ratio of the destination rectangle differs from the source, the source content is clipped to fit in the destination dimensions.