I have an app that has a series of radio buttins that allow the user to select which feature to edit.On selection the Editor LayerIDs are set to this specific layer But what I want to do on top of that is to make only those features selectable....Any ideas on how to set the selectable layer to a specific Feature Layer? Any examples? I assme that it would be easiest to set on the radio button change....Maybe this is something I can do on the Radio Button change? Private Sub HandleCheck(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Dim rb As RadioButton = TryCast(sender, RadioButton) EditLayer.Text = "You are now editing: " + ": " + rb.Name Dim _checkedValue As String = rb.Name If _checkedValue = "Point" Then EditLayer2.Text = "MG_Point" Dim MyEditor = TryCast(Me.LayoutRoot.Resources("MyEditor"), Editor) MyEditor.LayerIDs = New String() {EditLayer2.Text} ElseIf _checkedValue = "Line" Then EditLayer2.Text = "MG_Line" Dim MyEditor = TryCast(Me.LayoutRoot.Resources("MyEditor"), Editor) MyEditor.LayerIDs = New String() {EditLayer2.Text} ElseIf _checkedValue = "Polygon" Then EditLayer2.Text = "MG_Polygon" Dim MyEditor = TryCast(Me.LayoutRoot.Resources("MyEditor"), Editor) MyEditor.LayerIDs = New String() {EditLayer2.Text} Else End If End Sub