Subset network evaluators
SubsetNetworkEvaluatorsUI\SimpleEvaluatorProperties.vb
' Copyright 2010 ESRI
' 
' All rights reserved under the copyright laws of the United States
' and applicable international laws, treaties, and conventions.
' 
' You may freely redistribute and use this sample code, with or
' without modification, provided you include the original copyright
' notice and use restrictions.
' 
' See the use restrictions.
' 

Imports Microsoft.VisualBasic
Imports System
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text
Imports System.Windows.Forms

Namespace SubsetNetworkEvaluatorsUI
  ''' <summary>
  ''' Simple informational properties dialog for displaying read only information
  ''' about the chosen subset evaluator from the evaluators dialog in ArcCatalog.
  ''' </summary>
  Partial Public Class SimpleEvaluatorProperties : Inherits Form
    Public Sub New(ByVal description As String)
      InitializeComponent()
      lblEvaluatorDescription.Text = description
    End Sub
  End Class
End Namespace