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.

16 lines
422 B
C#

namespace com.azkoss.excellite
{
using System;
///<summary>
///Defines different methods of <see cref="com.azkoss.excellite.CellStyle">CellStyle</see> resolution.
///</summary>
///<seealso cref="com.azkoss.excellite.ExcelFile.RowColumnResolutionMethod">ExcelFile.RowColumnResolutionMethod</seealso>
public enum RowColumnResolutionMethod
{
RowOverColumn,
ColumnOverRow
}
}