AddCell() public method

public AddCell ( Cell cell, string tagName ) : CellTag
cell Cell
tagName string
return CellTag
コード例 #1
0
ファイル: ICellBuilder.cs プロジェクト: adymitruk/storyteller
        public static CellTag AddCell(this ICellBuilder builder, GrammarTag grammar, Cell cell)
        {
            CellTag tag = grammar.AddCell(cell, builder.TagName);
            builder.Configure(cell, tag);

            return tag;
        }
コード例 #2
0
ファイル: ICellBuilder.cs プロジェクト: larsw/storyteller
        public static CellTag AddCell(this ICellBuilder builder, GrammarTag grammar, Cell cell)
        {
            CellTag tag = grammar.AddCell(cell, builder.TagName);

            builder.Configure(cell, tag);

            return(tag);
        }