public bool IsWorking {get;}
Public ReadOnly Property IsWorking As Boolean
public bool IsWorking {get;}
@property (nonatomic,readonly) BOOL isWorking;
public boolean isWorking()
get_IsWorking();
IsWorking will be set to true by the base class when OnWorkStarted is called. It will be set back to false when OnWorkCompleted is called.
This value is useful when deriving your own interactive mode classes. Refer to ImageViewerInteractiveMode for an example.