Browse By Tags

  • How to Break the Association between certain Files and a specific WorkSet (Remove File Branding)

    Product(s): MicroStation Version(s): CONNECT, 2023 Environment: N\A Area: Configuration Subarea: WorkSet Background We need to break the association between certain files and a specific WorkSet…
  • [CONNECT .NET] Get File Branding

    I want to get a DGN file's brand (i.e. Its workspace and workset). I've made some progress... if (DgnWorkSetInfo.ExistsOnDgnFile(dgnFile)) { using (DgnWorkSetInfo info = DgnWorkSetInfo.ExtractFromDgnFile(dgnFile)) { string s = $"Workset name '{info…
  • I need a way to pre-brand new files by Workspace/Workset so that I don't see the Workspace/Workset dialog

    Already in a file with a workspace/workset, I programmatically create a new file to receive an extract from the current file. The file is created with Application.CreateDesignFile, and I open it with Application.OpenDesignFileForProgram. I .Close…