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

27 lines
560 B

6 years ago
using System.Text;
using ZeroLevel.DocumentObjectModel.Flow;
namespace DOM.DSL.Contracts
{
public interface ISpecialTableBuilder
{
/// <summary>
/// Indicates that a table cell body entry is expected.
6 years ago
/// </summary>
bool WaitCellBody { get; }
6 years ago
void WriteToCell(string part);
6 years ago
void EnterTable(Column[] colunmns);
6 years ago
void EnterRow(int count_columns);
6 years ago
void EnterCell(int order);
6 years ago
void LeaveCell();
6 years ago
void LeaveRow();
6 years ago
void FlushTable(StringBuilder builder);
}
}

Powered by TurnKey Linux.