SuperMap.WindowsPhone.Core.Feature.Select C# (CSharp) Méthode

Select() public méthode

${core_Feature_method_Select_D}
public Select ( ) : void
Résultat void
        public void Select()
        {
            base.SetValue(SelectedProperty, true);
        }
        /// <summary>${WP_core_Feature_method_UnSelect_D}</summary>

Usage Example

Exemple #1
0
 private void prepareMovePointFeature(Feature hoverFeature)
 {
     draggingVertex = hoverFeature;
     draggingVertex.Select();
     startTracking();
     startGeoPoint = ( hoverFeature.Geometry as GeoPoint ).Location;
 }