示例#1
0
        public virtual IDerivation Visit(PlaceHolderPhrase aPlaceHolderPhrase, DerivationContext aContext)
        {
            ListDerivation lList = new ListDerivation(true, aContext);
            TextDerivation lText = new TextDerivation(aPlaceHolderPhrase.Name); //Symbol.Create(mGrammar, Name, true);

            lList.Add(lText);
            //add this point to special list for futher replacement
            PlaceHolders.Add(aPlaceHolderPhrase.Name, lText);
            return(lList);
        }
 public UndefinedLayoutPageCompositionElement()
 {
     PlaceHolders.Add("Body",new RenderingsPlaceHolder("Body"));
 }