ArcObjects Library Reference  

SimpleEvaluatorProperties

About the Subset network evaluators Sample

[C#]

SimpleEvaluatorProperties.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using 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>
	public partial class SimpleEvaluatorProperties : Form
	{
		public SimpleEvaluatorProperties(string description)
		{
			InitializeComponent();
			lblEvaluatorDescription.Text = description;
		}
	}
}
[Visual Basic .NET]

SimpleEvaluatorProperties.vb

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