Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TCustomdxPSExplorer.State Property

Returns the explorer’s current state.

#Declaration

Delphi
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