TruncateSide.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 namespace Microsoft.CmdPal.Ext.Registry.Enumerations; 6 7 /// <summary> 8 /// The truncate side for a to long text 9 /// </summary> 10 internal enum TruncateSide 11 { 12 /// <summary> 13 /// Truncate a text only from the right side 14 /// </summary> 15 OnlyFromLeft, 16 17 /// <summary> 18 /// Truncate a text only from the left side 19 /// </summary> 20 OnlyFromRight, 21 }