Ejemplo n.º 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SectionTreeNode"/> class.
        /// </summary>
        public SectionTreeNode()
            : base()
        {
            NodeType  = FaxHierarchyTreeNodeType.Section;
            this.Text = "Abschnitt";

            Definition = new SectionDefinition();
            this.Tag   = Definition;
        }
Ejemplo n.º 2
0
 private bool IsLineSectionMarker(string line, out SectionDefinition currentSection)
 {
     currentSection = _controlInformation.GetSection(line);
     return currentSection != null;
 }
Ejemplo n.º 3
0
 private bool IsLineAreaRelevant(string line, SectionDefinition currentSection, out AreaDefinition area)
 {
     area = currentSection.GetArea(line);
     return area != null;
 }
Ejemplo n.º 4
0
        /// <summary>
        /// Initializes a new instance of the <see cref="SectionTreeNode"/> class.
        /// </summary>
        public SectionTreeNode()
            : base()
        {
            NodeType = FaxHierarchyTreeNodeType.Section;
            this.Text = "Abschnitt";

            Definition = new SectionDefinition();
            this.Tag = Definition;
        }