public int Append(ESRI.ArcGIS.Geometry.IPolyline5 inputgeom, string inputtext)
            {
                TextGeomItem tgitem = new TextGeomItem(inputgeom, inputtext);
                int          result = this.Append(tgitem);

                return(result);
            }
            public TextGeomItem(ESRI.ArcGIS.Geometry.IPolyline5 inputgeom, string inputtext)
            {
                if (!inputgeom.IsEmpty)
                {
                    _textgeom = inputgeom;
                }

                if (inputtext.Length > 0)
                {
                    _text = inputtext;
                }
            }
        internal static ESRI.ArcGIS.Geometry.IPolygon4 PolylineToPolygon(ESRI.ArcGIS.Geometry.IPolyline5 inputline)
        {
            ESRI.ArcGIS.Geometry.IPolygon4 results = new ESRI.ArcGIS.Geometry.PolygonClass();

            return(results);
        }