Ethan,
Thanks for the reply. I took a look at the example and I see that the EditGridLayerSample is a static iteration thought the grid features. What I am looking for a bit different. I would like to obtain the cell value or color under the mouse as the mouse moves over the grid or the user clicks on the map. i.e ThinkGeo has a function call MapClick that looks promising but I am not sure how to make it work.
This is what I have
I only have a single GridFeatureLayer loaded in the form
protected void Map1_Click(object sender, MapClickedEventArgs e)
{
var overlayIndex = 0;
LayerOverlay staticOverlay = (LayerOverlay)wfmFile.Overlays[overlayIndex];
GridFeatureLayer gridFeatureLayer = (GridFeatureLayer)staticOverlay.Layers["Grid View"];
Collection selectedFeatures = wfmFile.QueryTools.GetFeaturesNearestTo(e.Position, GeographyUnit.Meter, 1, ReturningColumnsType.AllColumns);
}