Hello,
I'm trying to open the layout properties window without much success.
var wrapper = FrameworkApplication.GetPlugInWrapper("esri_layouts_propertySheet");
var command = wrapper as ICommand;
if (command == null)
return;
// execute the command
if (command.CanExecute(null))
command.Execute(null);
I have an activeView. But the wrapper is always null.
Any idea ? Thanks !