ArcObjects Library Reference (CatalogUI)  

IEvaluatorEditor.FullDescription Property

The ith full description value.

[Visual Basic .NET]
Public Function get_FullDescription ( _
    ByVal index As Integer _
) As String
[C#]
public string get_FullDescription (
    int index
);

Product Availability

Available with ArcGIS Desktop.

Remarks

The FullDescription property is the text representation of all the settings made on this evaluator.  This text appears in the New Network Dataset wizard's Summary panel, describing all of the settings for this evaluator.

In contrast to the "one-liner" description provided in the Descriptor, the FullDescription typically has all of its settings labeled in the text.  For example, below is the FullDescription text for a NetworkFieldEvaluator that contains both Pre-Logic and Expression:

Prelogic:
  restricted = False
  Select Case UCase([One_way])
    Case "N", "TF", "T": restricted = True
  End Select
Expression: restricted

For comparison, below is the Descriptor text for the same evaluator:

<expression>

See Also

IEvaluatorEditor Interface