TCustomdxPSExplorer.State Property
In This Article
Returns the explorer’s current state.
#Declaration
Delphi
property State: TdxPSExplorerStates read;
#Property Value
Type |
---|
Tdx |
#Remarks
Read the State property to determine whether a specific operation is being performed by the explorer component. For instance, you can use the property when deriving your own explorer from the TCustomdxPSExplorer class. You can suspend particular operations if the explorer’s current state doesn’t allow them to be performed.
The table below lists values that can be returned by the State property.
Value | Description |
---|---|
es |
A report item is being created at the moment. This value is returned while the Create |
es |
A folder is being created at the moment. This value is returned while the Create |
es |
The explorer is loading data at the moment. |
es |
The explorer is refreshing. This value is returned while the Refresh method performs its task. |
See Also