A featurelayer has Cluster.
private void FeatureLayer_Initialized(object sender, EventArgs e)
{
((FeatureLayer)sender).MouseRightButtonDown += new FeatureLayer.MouseButtonEventHandler(FeatureLayer_MouseRightButtonDown);
}
private void FeatureLayer_MouseRightButtonDown(object sender, GraphicMouseButtonEventArgs args)
{
args.Handled = true;
string key = (string)args.Graphic.Attributes["JH"];
}
(string)args.Graphic.Attributes["JH"]: I cannot get the attribute if the clicking graphic is a node of a cluster. Thanks.