public ParserState(ParserState other)
 {
     rds = other.rds;
     ris = other.ris;
     CharacterAttributes = new CharacterAttributes(other.CharacterAttributes);
     ParagraphAttributes = new ParagraphAttributes(other.ParagraphAttributes);
     SectionAttributes   = new SectionAttributes(other.SectionAttributes);
     DocumentAttributes  = new DocumentAttributes(other.DocumentAttributes);
 }
 public ParserState()
 {
     CharacterAttributes = new CharacterAttributes();
     ParagraphAttributes = new ParagraphAttributes();
     SectionAttributes   = new SectionAttributes();
     DocumentAttributes  = new DocumentAttributes();
     rds = DestinationState.Normal;
     ris = ParserInternalState.Normal;
 }
 public DocumentAttributes(DocumentAttributes other)
 {
     PageWidth          = other.PageWidth;
     PageHeight         = other.PageHeight;
     LeftMargin         = other.LeftMargin;
     TopMargin          = other.TopMargin;
     RightMargin        = other.RightMargin;
     BottomMargin       = other.BottomMargin;
     StartingPageNumber = other.StartingPageNumber;
     FacingPages        = other.FacingPages;
     Landscape          = other.Landscape;
 }
Esempio n. 4
0
 public ParserState(ParserState other)
 {
     rds = other.rds;
     ris = other.ris;
     CharacterAttributes = new CharacterAttributes(other.CharacterAttributes);
     ParagraphAttributes = new ParagraphAttributes(other.ParagraphAttributes);
     SectionAttributes = new SectionAttributes(other.SectionAttributes);
     DocumentAttributes = new DocumentAttributes(other.DocumentAttributes);
 }
Esempio n. 5
0
 public ParserState()
 {
     CharacterAttributes = new CharacterAttributes();
     ParagraphAttributes = new ParagraphAttributes();
     SectionAttributes = new SectionAttributes();
     DocumentAttributes = new DocumentAttributes();
     rds = DestinationState.Normal;
     ris = ParserInternalState.Normal;
 }
Esempio n. 6
0
 public DocumentAttributes(DocumentAttributes other)
 {
     PageWidth = other.PageWidth;
     PageHeight = other.PageHeight;
     LeftMargin = other.LeftMargin;
     TopMargin = other.TopMargin;
     RightMargin = other.RightMargin;
     BottomMargin = other.BottomMargin;
     StartingPageNumber = other.StartingPageNumber;
     FacingPages = other.FacingPages;
     Landscape = other.Landscape;
 }