|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.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 Objectpublic int hashCode()
hashCode in class Object
public void setMinRange(int minRange)
throws IOException,
AutomationException
setMinRange in interface IStepProgressorminRange - 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 IStepProgressorIOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void setMaxRange(int maxRange)
throws IOException,
AutomationException
setMaxRange in interface IStepProgressormaxRange - 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 IStepProgressorIOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void setStepValue(int step)
throws IOException,
AutomationException
setStepValue in interface IStepProgressorstep - 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 IStepProgressorIOException - 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 IStepProgressorposition - 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 IStepProgressorIOException - 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 IStepProgressoroffsetValue - 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 IProgressormessage - 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 IProgressorIOException - 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 IProgressorIOException - 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 IProgressorIOException - 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 IProgressorIOException - 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 | ||||||||