.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
scroll bar for paletteset
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
98 Views, 3 Replies
01-06-2013 08:46 PM
I created an an app that uses a paletteset, and displays an usercontrol in it. I want to add a scroll to the paletteset. As when I resize it for editing the dwg file, The paletteset data below cannot be viewed without a scrol bar. Please suggest a way to get the scroll bar.
Autodesk.AutoCAD.Windows.PaletteSet m_ps = new Autodesk.AutoCAD.Windows.PaletteSet("Object Data");
UC uControl = new UC();
m_ps.Add("Object Data", uControl );
m_ps.Visible = true;
paletteset properties does have any properties related to scrollbar.
Thanks.
Solved! Go to Solution.
Re : scroll bar for paletteset
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-06-2013 10:37 PM in reply to:
newautocad123
Hi,
Did you set the UserControl.AutoScroll property to true ?
Gilles Chanteau
Re : scroll bar for paletteset
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-06-2013 10:41 PM in reply to:
_gile
Thanks. It works.
Re : scroll bar for paletteset
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
01-06-2013 10:46 PM in reply to:
_gile
Thankyou. The scrollbar gets displayed.
