You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
931 B
C#

// ***********************************************************************
// Assembly : Construction
// Author : flythink
// Created : 06-30-2020
//
// Last Modified By : flythink
// Last Modified On : 04-19-2021
// ***********************************************************************
// <copyright file="HotTrackModeKind.cs" company="jindongfang">
// Copyright (c) jindongfang. All rights reserved.
// </copyright>
// <summary></summary>
// ***********************************************************************
namespace WellWorkDataUI
{
/// <summary>
/// Enum HotTrackModeKind
/// </summary>
public enum HotTrackModeKind
{
/// <summary>
/// The none
/// </summary>
None,
/// <summary>
/// The row
/// </summary>
Row,
/// <summary>
/// The cell
/// </summary>
Cell,
}
}