Tagged Questions
The class-completion tag has no wiki summary.
4
votes
2answers
536 views
Delphi-IDE: how to change the way class-completion works?
Class completion in Delphi is a big time-saver, but I haven't found a way to customize it.
I would like a getter and setter for a property to be grouped together instead of being thrown all over my ...
3
votes
2answers
98 views
How can I make Class Completion include parentheses even for empty parameter lists?
I'm back in Delphi 2010 again after having worked several years in Visual Studio. I would like to make the IDE behave in a differnet way:
I'd like the IDE's auto-completion to respect the parenthesis ...
2
votes
4answers
289 views
In what order does Class Completion put its results?
Example: I create a new unit, declare a class with several methods like constructor, destructor, method1, method2, method3 in that order and then hit Ctrl-Shift-C.
The IDE creates all the method ...
0
votes
1answer
124 views
Delphi: Codecompletion to override basemethods
In a class declaration, you can press Ctrl+Space to get a list of virtual methods in the baseclass that you can override.
This list seems to be very limited, though. Ex.
TMyBaseClass = ...