I'm using FileGeoDB API 1.3, and trying to update Z values in a feature class of PointZ or PolylineZ type. I am not finding a function called SetZ or similar. Here are the steps I'm taking:
Row row;
//then get the row from a query
PointShapeBuffer geom;
Point* point;
row.GetGeometry(geom);
geom.GetPoint(point);
double x,y,z;
x=point[0].x;
y=point[0].y;
//z=point[0].z; // does not exist.
geom.GetZ(z); // here is how I could get z
z=z+10;
// SetZ(z); does not exist. What are the alternatives ?
// point[0].z=z; does not exist either
row.SetGeometry(geom);
Thanks for your help