-
Notifications
You must be signed in to change notification settings - Fork 0
TableSingleCS
sindizzy edited this page Dec 30, 2020
·
4 revisions
using DotSpatial.Data;
private void btnBuffer_Click(object sender, EventArgs e)
{
IFeatureSet fs = FeatureSet.Open(@"C:\[Your File Path\Municipalities.shp");
fs.FillAttributes();
DataTable dt = fs.DataTable;
for (int row = 0; row < dt.Rows.Count; row++)
{
object val = dtOriginal.Rows[row](row)["NAME"](_NAME_);
}
}