ArcObjects Library Reference (Carto)  

IUniqueValueRenderer.Heading Property

Heading that contains the specified value.

[Visual Basic .NET]
Public Function get_Heading ( _
    ByVal Value As String _
) As String
[Visual Basic .NET]
Public Sub set_Heading ( _
    ByVal Value As String, _
    ByVal Heading As String _
)
[C#]
public string get_Heading (
    string Value
);
[C#]
public void set_Heading (
    string Value,
    string Heading
);
[C++]
HRESULT get_Heading(
  BSTR Value,
  BSTR* Heading
);
[C++]
HRESULT put_Heading(
  BSTR Value,
  BSTR Heading
);
[C++]

Parameters

Value [in]   Value is a parameter of type BSTR Heading [out, retval]   Heading is a parameter of type BSTR Value [in]   Value is a parameter of type BSTR Heading [in]   Heading is a parameter of type BSTR

Product Availability

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

Description

The text heading for the specified value that which appears in the table of contents and legend if applicable.

Remarks

Headings are used to organize renderer categories in the table of contents and legend. You can create a new heading by assigning to this property a text string that does not already exist, and passing a value which you would like to fall under this heading.

To add a value to an existing heading, assign a text string to this property that already exists as a heading, passing the value as the parameter.

See Also

IUniqueValueRenderer Interface