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.

14 lines
427 B
C#

namespace com.azkoss.excellite
{
using System;
using System.Runtime.CompilerServices;
///<summary>
///Delegate for handling the <see cref="com.azkoss.excellite.ExcelFile.LimitNear">ExcelFile.LimitNear</see>
///and <see cref="com.azkoss.excellite.ExcelFile.LimitReached">ExcelFile.LimitReached</see> events.
///</summary>
public delegate void LimitEventHandler(object sender, LimitEventArgs e);
}