FDO .NET API Reference Feature Data Objects

mgIRingAbstract.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 
00022 BEGIN_NAMESPACE_OSGEO_GEOMETRY
00023 public __gc __interface IEnvelope;
00024 END_NAMESPACE_OSGEO_GEOMETRY
00025 
00026 BEGIN_NAMESPACE_OSGEO_GEOMETRY
00027 
00028 /// \ingroup (OSGeoFDOGeometry)
00029 /// \interface OSGeo::FDO::Geometry::IRingAbstract
00030 /// \brief
00031 /// The IRingAbstract class is a ring Geometry helper type (abstract). IRingAbstract is the most general ring type.
00032 /// It is similar to CurveAbstract, but is always closed.
00033 public __gc __interface IRingAbstract : public System::IDisposable
00034 {
00035 public:
00036     /// \brief
00037     /// Gets the envelope for the object.
00038     /// 
00039     /// \return
00040     /// Returns the envelope
00041     /// 
00042     __property NAMESPACE_OSGEO_GEOMETRY::IEnvelope *get_Envelope();
00043     
00044     /// \brief
00045     /// Gets the dimensionality of ordinates in this object.
00046     /// 
00047     /// \remarks
00048     /// Values are from the Dimensionality enum.
00049     /// A return type of "Int32" is used instead of the enum, catering to typical use with bit masking.
00050     /// 
00051     /// \return
00052     /// Returns the ordinate dimensionality
00053     /// 
00054     __property System::Int32 get_Dimensionality();
00055 };
00056 END_NAMESPACE_OSGEO_GEOMETRY
00057 
00058 

Comments or suggestions? Send us feedback.