This document is archived and information here might be outdated.  Recommended version.


IDimensionStyleText.ExpressionParserName Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > ID > IDimensionStyleText Interface > IDimensionStyleText.ExpressionParserName Property
ArcGIS Developer Help

IDimensionStyleText.ExpressionParserName Property

Text expression parser for the text expression for the style.

[Visual Basic .NET]
Public Property ExpressionParserName As String
[C#]
public string ExpressionParserName {get; set;}
[C++]
HRESULT get_ExpressionParserName(
  BSTR Name
);
[C++]
HRESULT put_ExpressionParserName(
  System.String* Name
);
[C++]
Parameters
Name [in]

Name is a parameter of type BSTR Name [out, retval]
Name is a parameter of type BSTR*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The text string can also be determined from an expression specified in the Expression property. The expression can be a simple concatenation of column values and strings or a function written in scripting language. The name of the parser for the expression should be specified in the ExpressionParserName property. The currently available parsers are VBScript, JScript and Python which are represented respectively by the strings "VBScript", "JScript", and "Python".  The strings "VB Script" and "Java Script" may be used for backward compatibility with ArcGIS versions prior to 10.1 where these names were used.

See Also

IDimensionStyleText Interface