mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 09:28:03 +08:00
23 lines
620 B
C#
23 lines
620 B
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
namespace Microsoft.PowerToys.Run.Plugin.Registry.Enumerations
|
|
{
|
|
/// <summary>
|
|
/// The truncate side for a to long text
|
|
/// </summary>
|
|
internal enum TruncateSide
|
|
{
|
|
/// <summary>
|
|
/// Truncate a text only from the right side
|
|
/// </summary>
|
|
OnlyFromLeft,
|
|
|
|
/// <summary>
|
|
/// Truncate a text only from the left side
|
|
/// </summary>
|
|
OnlyFromRight,
|
|
}
|
|
}
|