21 lines
692 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ST.Library.UI.STTextBox
{
public delegate void EachVoidCallBack(string strText, int nIndex, int nLen);
public delegate bool EachBoolCallBack(string strText, int nIndex, int nLen);
public interface ITextBoundary
{
List<string> Split(string strText);
int GetCount(string strText);
void Each(string strText, EachVoidCallBack callBack);
void Each(string strText, int nIndex, EachVoidCallBack callBack);
void Each(string strText, EachBoolCallBack callBack);
void Each(string strText, int nIndex, EachBoolCallBack callBack);
}
}