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.
Zero/ZeroLevel/Services/DOM/DSL/Contracts/ISpecialTableBuilder.cs

21 lines
597 B

6 years ago
using System.Text;
using ZeroLevel.DocumentObjectModel.Flow;
namespace DOM.DSL.Contracts
{
public interface ISpecialTableBuilder
{
/// <summary>
/// Указывает что ожидается запись тела ячейки таблицы
/// </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);
}
}

Powered by TurnKey Linux.