FDO .NET API Reference Feature Data Objects

mgIMultiCurveStringImp.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 "mgIMultiCurveString.h"
00023 
00024 class FdoIMultiCurveString;
00025 BEGIN_NAMESPACE_OSGEO_GEOMETRY
00026 public __gc __interface ICurveString;
00027 END_NAMESPACE_OSGEO_GEOMETRY
00028 
00029 BEGIN_NAMESPACE_OSGEO_GEOMETRY
00030 
00031 /// \ingroup (OSGeoFDOGeometry)
00032 /// \brief
00033 /// The IMultiCurveStringImp class is a multi-CurveString collection Geometry type.
00034 /// The curves contained here do not have to
00035 /// be contiguous, nor spatially interact in any other way.
00036 private __gc class IMultiCurveStringImp : 
00037     public NAMESPACE_OSGEO_GEOMETRY::IGeometricAggregateAbstractImp, public NAMESPACE_OSGEO_GEOMETRY::IMultiCurveString
00038 {
00039 public:
00040     /// \brief
00041     /// Constructs a managed object based on an unmanaged instance of the object
00042     /// 
00043     /// \param unmanaged 
00044     /// Input A Pointer to the unmanaged object.
00045     /// 
00046     /// \param autoDelete 
00047     /// Input Indicates if the constructed element should be automatically deleted 
00048     /// once it no longer referenced.
00049     /// 
00050     IMultiCurveStringImp(System::IntPtr unmanaged, System::Boolean autoDelete);
00051 
00052 public private:
00053     FdoIMultiCurveString *GetImpObj();
00054 
00055 public:
00056     /// \brief
00057     /// Gets a CurveString at the given zero-based index.
00058     /// 
00059     /// \param index 
00060     /// Input Zero-based index in the object's list of curve strings.
00061     /// 
00062     /// \return
00063     /// Returns a CurveString
00064     /// 
00065     __property NAMESPACE_OSGEO_GEOMETRY::ICurveString *get_Item(System::Int32 index);
00066 };
00067 
00068 END_NAMESPACE_OSGEO_GEOMETRY
00069 
00070 

Comments or suggestions? Send us feedback.