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


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

IDataGraphBase.UseSelectedSet Property

Indicates if the selected set of the series from input dataset is used to build graph.

[Visual Basic .NET]
Public Property UseSelectedSet As Boolean
[C#]
public bool UseSelectedSet {get; set;}
[C++]
HRESULT get_UseSelectedSet(
  Boolean* pUseSel
);
[C++]
HRESULT put_UseSelectedSet(
  VARIANT_BOOL pUseSel
);
[C++]
Parameters
pUseSel [out, retval]

pUseSel is a parameter of type bool* pUseSel [in]
pUseSel is a parameter of type bool

Product Availability

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

Remarks

Value is the only parameter. Graphs can be built based on selected set from the input data. There are two methods available: HighlightSelection (from IDataGraphT) and UseSelectedSet (from IDataGraphBase). If UseSelectedSet is set to true, graph series will be built based on selection. There are two modes on how graph is drawn. The first one is by highlighting features on the graph (HighlightSelection is set to true in this case), and the second one is building graph from selected features only (HighlighteSelection is set to false in this case).

See Also

IDataGraphBase Interface