Message 1 of 7
PostableCommand SplitFace and SplitSurface
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is there any reason that the command SplitFace and SplitSurface to not seem to run ? All other commands I try work fine. This is the code I am using:
class Update : IExternalCommand
{
public virtual Result Execute(ExternalCommandData commandData
, ref string message, ElementSet elements)
{
var cmdId = RevitCommandId.LookupPostableCommandId(PostableCommand.SplitFace);
new UIApplication(Rvt.Doc.Application).PostCommand(cmdId);
return Result.Succeeded;
}
}