ArcObjects Library Reference  (Carto)    

IGeoFeatureLayer.RendererPropertyPageClassID Property

Class id of the property page for the renderer.

[Visual Basic 6.0]
Property RendererPropertyPageClassID As IUID
[Visual Basic .NET]
Public Property RendererPropertyPageClassID As UID
[C#]
public UID RendererPropertyPageClassID {get; set;}
[Java]
public IUID getRendererPropertyPageClassID()
throws
    IOException,
    AutomationException
[Java]
public void setRendererPropertyPageClassID(
IUID pUID
)
throws
    IOException,
    AutomationException
[C++]
HRESULT get_RendererPropertyPageClassID(
  IUID** clsid
);
[C++]
HRESULT put_RendererPropertyPageClassID(
  IUID* clsid

);

[C++]

Parameters

clsid [out, retval]

  clsid is a parameter of type IUID

clsid [in]

  clsid is a parameter of type IUID

Product Availability

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

Description

The classID of the renderer property page that is used to edit the renderer of the layer.
[Visual Basic 6.0]

One way to associate a renderer property page to a layer is to use a UID object and give it the GUID of the property page. The ProgID can also be used, though it is not guaranteed to be unique:

Dim pUID as New UID ' create a new UID objects
'progID is "esriCartoUI.BarChartPropertyPage"
pUID.Value = "{98DD7040-FEb4-11D3-9F7C-00C04F6BC709}"
pGeoFeatureLayer.RendererPropertyPageClassID = pUID

See Also

IGeoFeatureLayer Interface

Example

IGeoFeatureLayer RendererPropertyPageClassID Example

 


Feedback Send feedback on this page