.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Show the command line
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Does anyone know how to duplicate the functionality of pressing the F2 button in .NET? I have several commands that write a fair bit of data to the command line, including one that lists individual segments of civil 3d objects and I would like to make the command line appear in a similar fashion to the list command.
Thanks for your help.
-Mark P.
Solved! Go to Solution.
Show the command line
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Autodesk.AutoCAD.Internal.Utils.ShowHideTextWindow
Pass a value of False to hide the text window.
Re: Show the command line
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thank you Jeff. It would be nice if this type of thing were documented in the API. I see now that searching object browser in Visual Studio does find it, but you have to type 'textwindow' exactly... I searched the web for about 40 minutes before asking this question because I was sure someone must have done so before me.
-Mark P.
Re: Show the command line
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
MarkPendergraft wrote:....It would be nice if this type of thing were documented in the API....
I'm not disagreeing with that, but.....
namespace Autodesk.AutoCAD.Internal.*
Anything within the 'Internal' namespace is entirely undocumented, and as its name suggests, is for 'internal use only'.

