New features in ModelMaker Code Explorer for Visual Studio 2.03 beta
ModelMaker Code Explorer betas are available for registered MMXVS 2 customers only. To apply for the beta's .
C# version 3 syntax support
- Auto implemented properties supported.
- The partial method modifier is supported.
- The extension method this parameter modifier is supported.
Entity Insight™ bars
- The Explorer members view contains an Entity Insight™ bar that tracks the selected entities and allows modeless changing of entity attributes like name, type and visibility. The Explorer EI-bar tracks the (multiple) selected members in the explorer members view. Movie (Pascal edition):

- Name - changes entity name. Single selected entity only.
- Visibility - changes entity visibility.
- (Return) type selector - changes method / delegate return type or field / property type name. The "Make void" command from type selector drop down style button (next to the type selector) can be used to create void methods.
- Change parameters - invokes a parameter wizard and operates on multiple selected methods / procedures - includes IntelliReplacing renamed parameters in all selected methods.
- Method / Property binding - changes binding (non virtual, virtual, override, abstract etc..) for selected methods and properties
- new modifier - toggles the new modifier for selected entities.
- unsafe modifier - toggles the unsafe modifier for selected entities.
- Add code snippet: adds a method code snippet to the selected method(s). Note: multiple selection is supported.
- Field type - changes selected fields to instance field or static.
Interface Wizard
- The Interface Wizard helps implementing interfaces by adding new members to a class or correcting the declaration for existing members. Movie

- To invoke the Interface Wizard: drag/ drop an interface on a class implementing the interface or copy an interface or members of an interface and paste this the class that should support the interface.
- The wizard supports both implicit and explicit mapping modes.
Pascal: explicit mode uses method resolution clauses to map interface methods on implementing methods.
C#: the wizard dialog allows toggling the implicit/ explicit mode. - The Interface Wizard allows specifying the visibility for new members (default private) and the explicit or implicit mapping mode (C# only).
- The Interface Wizard dialog shows the mapping analysis plus the actions required to implement each interface member. Optionally this dialog can be suppressed or displayed only when existing members will be modified.
- Pascal: interface properties are implemented by methods only - the Wizard therefore only analyzes and updates methods for Pascal.
Modeless Event handler analysis view
- The Event handler analysis view is now a modeless window that tracks the form designer designer linked to the top most editor. Movie:

- Selecting an event handler in the window, navigates to the associated source.
- Component, event and the linked event handler are displayed in three sortable columns.
- The Report command allows emitting analysis to printer, file, preview and clipboard.
Generic new features
- Uncommenting using Toggle comment, removes the auto-inserted comment test if this is unchanged.
- When used on a selection, Rename Local allows picking an identifier from the selected text in the Replace input combo box.
- Creational wizard preselects the members selected in the explorer window or IDE editor - depending on how it was invoked.
New Source Indexer features
- Close all tabs added.
- Pressing Escape sets focus to the IDE editor.
- Ctrl+Q clears all tabs
- If errors occur when building the index, an errors icon will be available in status bar and toolbar. Its hint shows the first 10 errors, clicking it, allows viewing (printing etc) all errors.
- Source Indexer search edit stores previously searched texts in its drop down list. Available only when option "Assign to combo drop down" is unchecked - which is the default.
External code navigation interface
- MMXVS supports a basic interface to allow 3rd party tools to scroll the IDE code editor. Supported are:
- Scroll to filename, line number, column
- Scroll to file name (optional), class name, member name (optional). If the file name is omitted, MMX uses the navigation history to locate "class name". If member name is omitted, MMXVS scrolls to the class declaration.
- This interface can be used from external executables running on the same machine or from packages or dll's loaded into the IDE.
- Sample application: the DUnit GUITestRunner by Tiriss (pascal) uses this interface to navigate to test methods.
Solved bugs
- In some cases Apply Class Template would insert properties in the wrong place (outside the class). Solved.
- Compound names space names as "namespace Root.Test.This { } " would make it impossible to save documentation in the documentation window. Also history based navigation would fail. Solved.


Live Documentation