www.pudn.com > ArcgisMapOperation.rar > TableInfo.cs
using System;
using System.Collections.Generic;
using System.Text;
using ESRI.ArcGIS.Geometry;
namespace ArcgisMapOperation.Struct
{
public class TableInfo
{
private IGeometry shapeValue;
///
/// shape
///
public IGeometry ShapeValue
{
set
{
shapeValue = value;
}
get
{
return shapeValue;
}
}
private List lstFieldName;
///
/// shape
///
public List FieldName
{
set
{
lstFieldName = value;
}
get
{
return lstFieldName;
}
}
private List