ArcObjects Library Reference (Carto)  

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(
  VARIANT_BOOL* pUseSel
);
[C++]
HRESULT put_UseSelectedSet(
  VARIANT_BOOL pUseSel
);
[C++]

Parameters

pUseSel [out, retval]   pUseSel is a parameter of type VARIANT_BOOL pUseSel [in]   pUseSel is a parameter of type VARIANT_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