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);
Parameters
clsid [out, retval]
clsid is a parameter of type IUID
clsid [in]
clsid is a parameter of type IUID
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