If you want to access the configuration parameters that were passed to a particular component, you can access them from this.initialConfig .
If you want to get a list of all the possible configuration parameters that can be passed, then this cannot be done from the ExtJS framework itself. Basically, you are limited by the fact that not all configuration parameters are listed in the prototype - many of which, by default for undefined, are only checked programmatically.
You can extract this data from Ext JS doc comments using jsduck to export JSON documents from which you can filter from configuration settings.
source share