mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
13 lines
227 B
C#
13 lines
227 B
C#
|
namespace HeliosDisplayManagement.Shared
|
|||
|
{
|
|||
|
public enum Scaling
|
|||
|
{
|
|||
|
NotSpecified,
|
|||
|
Identity,
|
|||
|
Centered,
|
|||
|
Stretched,
|
|||
|
AspectRatioCenteredMax,
|
|||
|
Custom,
|
|||
|
Preferred,
|
|||
|
}
|
|||
|
}
|