Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I face a problem by netloading a dll for add-in as the only command that works fine is ParcelCreation but other give me Unkown Command Why ? Knowing that by debugging (From VS 2022) all commands Work Fine
public class Commands : IExtensionApplication
{
public void Initialize()
{
}
public void Terminate()
{
}
[CommandMethod("ParcelCreation")]
public void OpenParcelCreationUI()
{
BlocksManager.Create();
}
[CommandMethod("ParcelStyleCreation")]
public void OpenParcelStyleCreationUI()
{
ThemeManager.CreateParcelStyles();
}
[CommandMethod("AssignParcelParamer")]
public void OpenParcelParameterAssignUI()
{
ParameterManager.TransferParameter();
}
[CommandMethod("AssignParcelStyle")]
public void AssignStyleofParcels()
{
ThemeManager.ApplyTheme();
}
}
Solved! Go to Solution.