Message 1 of 2
Auto-Rollup Not Working for Palettes in ZWCAD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am working with palettes in ZWCAD and have created two palettes. My goal is that when one palette opens, the other should automatically roll up to the left.
I used the following code to achieve this:
paletteOne.Dock = DockSides.None;
paletteOne.AutoRollUp = true;
paletteOne.RolledUp = true;
paletteOne.Dock = DockSides.Left;
This code works as expected in AutoCAD. However, in ZWCAD, when I open paletteOne and then try to open paletteTwo, paletteOne does not auto-roll up to the left. Instead, both paletteOne and paletteTwo remain visible.
Is there a difference in how ZWCAD handles AutoRollUp? If so, is there an alternative approach to achieving the same behavior in ZWCAD? Any guidance or workaround would be greatly appreciated.