Skip to main content

TCustomdxPSExplorer.State Property

Returns the explorer’s current state.

Declaration

property State: TdxPSExplorerStates read;

Property Value

Type
TdxPSExplorerStates

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
esItemCreating A report item is being created at the moment. This value is returned while the CreateNewItem method is performing its task.
esFolderCreating A folder is being created at the moment. This value is returned while the CreateNewFolder method is performing its task.
esLoading The explorer is loading data at the moment.
esRefreshing The explorer is refreshing. This value is returned while the Refresh method performs its task.
See Also