Exemplo n.º 1
0
        public Marker(FObj parent, PropertyList propertyList)
            : base(parent, propertyList)
        {
            this.markerClassName =
                this.properties.GetProperty("marker-class-name").GetString();
            ts = propMgr.getTextDecoration(parent);

            try
            {
                parent.AddMarker(this.markerClassName);
            }
            catch (FonetException)
            {
            }
        }
Exemplo n.º 2
0
        public Marker(FObj parent, PropertyList propertyList)
            : base(parent, propertyList)
        {
            this.name = "fo:marker";

            this.markerClassName =
                this.properties.GetProperty("marker-class-name").GetString();
            ts = propMgr.getTextDecoration(parent);

            try
            {
                parent.AddMarker(this.markerClassName);
            }
            catch (FonetException)
            {
            }
        }