Esempio n. 1
0
 void SetDataItemProperty(DataItem dataItem, NodeProperty property)
 {
     if (property.Anchor != null)
     {
         currentDocument.AnchoredItems[property.Anchor] = dataItem;
     }
     dataItem.Property = property;
 }
        private NodeProperty ParseNodeProperty(out bool success)
        {
            int errorCount = Errors.Count;
            NodeProperty nodeProperty = new NodeProperty();

            while (true)
            {
                int seq_start_position1 = position;
                nodeProperty.Tag = ParseTag(out success);
                if (!success)
                {
                    Error("Failed to parse Tag of NodeProperty.");
                    break;
                }

                while (true)
                {
                    int seq_start_position2 = position;
                    ParseSeparationLines(out success);
                    if (!success)
                    {
                        Error("Failed to parse SeparationLines of NodeProperty.");
                        break;
                    }

                    nodeProperty.Anchor = ParseAnchor(out success);
                    if (!success)
                    {
                        Error("Failed to parse Anchor of NodeProperty.");
                        position = seq_start_position2;
                    }
                    break;
                }
                success = true;
                break;
            }
            if (success) { ClearError(errorCount); return nodeProperty; }

            while (true)
            {
                int seq_start_position3 = position;
                nodeProperty.Anchor = ParseAnchor(out success);
                if (!success)
                {
                    Error("Failed to parse Anchor of NodeProperty.");
                    break;
                }

                while (true)
                {
                    int seq_start_position4 = position;
                    ParseSeparationLines(out success);
                    if (!success)
                    {
                        Error("Failed to parse SeparationLines of NodeProperty.");
                        break;
                    }

                    nodeProperty.Tag = ParseTag(out success);
                    if (!success)
                    {
                        Error("Failed to parse Tag of NodeProperty.");
                        position = seq_start_position4;
                    }
                    break;
                }
                success = true;
                break;
            }
            if (success) { ClearError(errorCount); return nodeProperty; }

            return nodeProperty;
        }
 void SetDataItemProperty(DataItem dataItem, NodeProperty property)
 {
     if (property.Anchor != null)
     {
         currentDocument.AnchoredItems[property.Anchor] = dataItem;
     }
     dataItem.Property = property;
 }