SuperMap.WindowsPhone.Core.Feature.Select C# (CSharp) Method

Select() public method

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

Usage Example

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