|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IBasicHistogram
Provides access to members that control histogram objects created from different data sources.
Use BasicTableHistogram::ITableHistogram to produce a histogram data structure based on input from an object that supports ITable. This data structure is commonly used as input to the classification coclasses (e.g. NaturalBreaks, Quantile). Use this object if you are developing against only ArcEngine components. The BasicTableHistogram performs a simliar function to TableHistogram, but unlike TableHistogram, it is available to ArcEngine developers.
IBasicHistogram performs a function similar to IHistogram, but it is available to Engine developers. Use IBasicHistogram with a BasicTableHistogram like you would use IHistogram with a TableHistogram.
Method Summary | |
---|---|
boolean |
getHistogram(Object[] doubleArrayValues,
Object[] longArrayFrequencies)
Histogram as an array of values (doubles) and a paired array of frequencies (longs). |
void |
invalidate()
Causes to recreate the Histogram from the Table for the next GetHistogram call. |
void |
resetCustomMinMax()
Resets custom minimum and maximum. |
void |
setCustomMax(double rhs1)
Custom maximum. |
void |
setCustomMin(double rhs1)
Custom minimum. |
Method Detail |
---|
boolean getHistogram(Object[] doubleArrayValues, Object[] longArrayFrequencies) throws IOException, AutomationException
doubleArrayValues
- A Variant (out: use single element array)longArrayFrequencies
- A Variant (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setCustomMin(double rhs1) throws IOException, AutomationException
rhs1
- The rhs1 (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setCustomMax(double rhs1) throws IOException, AutomationException
rhs1
- The rhs1 (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void resetCustomMinMax() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void invalidate() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |