I need to acquire a reference to the element created by CKEditor for the toolbar in order to perform customizations not provided by the API (toggling basic & advanced mode, making it draggable). There does not seem to be any methods or properties of the editor object I create with CKEDITOR.inline(...) to get this information. I see that eventually a DOM element is inserted with an ID that can be derived from the name property of the editor, but because it seems to be inserted asynchronously, it looks like I'd have to resort to something like a setTimeout hack before looking it up.
Is there an official, idiomatic way to get a reference to the editor toolbar's DOM element?