|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.arcmapui.ProgressBar
public class ProgressBar
ProgressBar object.
Constructor Summary | |
---|---|
ProgressBar(Object obj)
Construct a ProgressBar using a reference to such an object returned from ArcGIS Engine or Server. |
Method Summary | |
---|---|
boolean |
equals(Object o)
Compare this object with another |
int |
getMaxRange()
The maximum range of the progression. |
String |
getMessage()
The message displayed by the progressor. |
int |
getMinRange()
The minimum range of the progression. |
int |
getPosition()
The current position of the progression. |
int |
getStepValue()
The step increment of the progression. |
int |
hashCode()
the hashcode for this object |
void |
hide()
Hides the progressor. |
int |
offsetPosition(int offsetValue)
Offsets the position of the progression. |
void |
setMaxRange(int maxRange)
The maximum range of the progression. |
void |
setMessage(String message)
The message displayed by the progressor. |
void |
setMinRange(int minRange)
The minimum range of the progression. |
void |
setPosition(int position)
The current position of the progression. |
void |
setStepValue(int step)
The step increment of the progression. |
void |
show()
Shows the progressor. |
void |
step()
Animates or steps the progressor. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef |
---|
getJintegraDispatch, release |
Constructor Detail |
---|
public ProgressBar(Object obj) throws IOException
obj
to ProgressBar
. *
ProgressBar o = (ProgressBar)obj; // will not work
ProgressBar o = new ProgressBar(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server
IOException
- if there are interop problems
ProgressBar theProgressBar = (ProgressBar) obj;
Method Detail |
---|
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public void setMinRange(int minRange) throws IOException, AutomationException
setMinRange
in interface IStepProgressor
minRange
- The minRange (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getMinRange() throws IOException, AutomationException
The minimum value of the step progressor.
getMinRange
in interface IStepProgressor
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setMaxRange(int maxRange) throws IOException, AutomationException
setMaxRange
in interface IStepProgressor
maxRange
- The maxRange (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getMaxRange() throws IOException, AutomationException
The maximum value of the step progressor.
getMaxRange
in interface IStepProgressor
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setStepValue(int step) throws IOException, AutomationException
setStepValue
in interface IStepProgressor
step
- The step (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getStepValue() throws IOException, AutomationException
The increment value taken by the progression with each step.
getStepValue
in interface IStepProgressor
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setPosition(int position) throws IOException, AutomationException
The current position of the progression between the MinRange and MaxRange values.
setPosition
in interface IStepProgressor
position
- The position (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getPosition() throws IOException, AutomationException
The current position of the progression between the MinRange and MaxRange values.
getPosition
in interface IStepProgressor
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int offsetPosition(int offsetValue) throws IOException, AutomationException
Offsets the current Position by the specified value.
offsetPosition
in interface IStepProgressor
offsetValue
- The offsetValue (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setMessage(String message) throws IOException, AutomationException
setMessage
in interface IProgressor
message
- The message (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getMessage() throws IOException, AutomationException
This is a generic Message property for progressors (for example a progress bar).
getMessage
in interface IProgressor
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void show() throws IOException, AutomationException
This is a generic Show method for progressors (for example a progress bar).
show
in interface IProgressor
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void step() throws IOException, AutomationException
This is a generic Step method for progressors (for example a progress bar).
step
in interface IProgressor
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void hide() throws IOException, AutomationException
This is a generic Hide method for progressors (for example a progress bar).
hide
in interface IProgressor
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 |