FDO .NET API Reference Feature Data Objects

mgIMultiCurvePolygonImp.h

Go to the documentation of this file.
00001 /*
00002 * Copyright (C) 2004-2006  Autodesk, Inc.
00003 * 
00004 * This library is free software; you can redistribute it and/or
00005 * modify it under the terms of version 2.1 of the GNU Lesser
00006 * General Public License as published by the Free Software Foundation.
00007 * 
00008 * This library is distributed in the hope that it will be useful,
00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011 * Lesser General Public License for more details.
00012 * 
00013 * You should have received a copy of the GNU Lesser General Public
00014 * License along with this library; if not, write to the Free Software
00015 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00016 *
00017 */
00018 
00019 
00020 #pragma once
00021 #include "mgIGeometricAggregateAbstractImp.h"
00022 #include "mgIMultiCurvePolygon.h"
00023 
00024 class FdoIMultiCurvePolygon;
00025 BEGIN_NAMESPACE_OSGEO_GEOMETRY
00026 public __gc __interface ICurvePolygon;
00027 END_NAMESPACE_OSGEO_GEOMETRY
00028 
00029 BEGIN_NAMESPACE_OSGEO_GEOMETRY
00030 
00031 /// \ingroup (OSGeoFDOGeometry)
00032 /// \brief
00033 /// The IMultiCurvePolygonImp class is a multi-CurvePolygon aggregate Geometry type.
00034 private __gc class IMultiCurvePolygonImp
00035     : public NAMESPACE_OSGEO_GEOMETRY::IGeometricAggregateAbstractImp, public NAMESPACE_OSGEO_GEOMETRY::IMultiCurvePolygon
00036 {
00037 public:
00038     /// \brief
00039     /// Constructs a managed object based on an unmanaged instance of the object
00040     /// 
00041     /// \param unmanaged 
00042     /// Input A Pointer to the unmanaged object.
00043     /// 
00044     /// \param autoDelete 
00045     /// Input Indicates if the constructed element should be automatically deleted 
00046     /// once it no longer referenced.
00047     /// 
00048     IMultiCurvePolygonImp(System::IntPtr unmanaged, System::Boolean autoDelete);
00049 
00050 public private:
00051     FdoIMultiCurvePolygon *GetImpObj();
00052 
00053 public:
00054     /// \brief
00055     /// Gets a CurvePolygon at the given zero-based index.
00056     /// 
00057     /// \param index 
00058     /// Input Zero-based index in the object's list of polygons.
00059     /// 
00060     /// \return
00061     /// Returns a CurvePolygon
00062     /// 
00063     __property NAMESPACE_OSGEO_GEOMETRY::ICurvePolygon *get_Item(System::Int32 index);
00064 };
00065 
00066 END_NAMESPACE_OSGEO_GEOMETRY
00067 
00068 

Comments or suggestions? Send us feedback.