|
//------------------------------------------------------------------------------
// <copyright file="ListSortDirection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.ComponentModel {
using System.Collections;
/// <devdoc>
/// <para>Specifies the direction of a sort.</para>
/// </devdoc>
public enum ListSortDirection {
/// <devdoc>
/// <para>Sort in ascending order.</para>
/// </devdoc>
Ascending,
/// <devdoc>
/// <para>Sort in descending order.</para>
/// </devdoc>
Descending
}
}
|