mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
554 B
21 lines
554 B
using System.Text;
|
|
using ZeroLevel.DocumentObjectModel.Flow;
|
|
|
|
namespace DOM.DSL.Contracts
|
|
{
|
|
public interface ISpecialTableBuilder
|
|
{
|
|
/// <summary>
|
|
/// Indicates that a table cell body entry is expected.
|
|
/// </summary>
|
|
bool WaitCellBody { get; }
|
|
void WriteToCell(string part);
|
|
void EnterTable(Column[] colunmns);
|
|
void EnterRow(int count_columns);
|
|
void EnterCell(int order);
|
|
void LeaveCell();
|
|
void LeaveRow();
|
|
void FlushTable(StringBuilder builder);
|
|
}
|
|
}
|