.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
SelectOnSc reen
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
155 Views, 3 Replies
08-09-2005 05:29 AM
I'm developing in C# and using the selectonscreen method of a selectionset. As folllows:
AcadSSCopy.SelectOnScreen(null,null);
For some reason it doesn't like my args. What is everybody else using?
AcadSSCopy.SelectOnScreen(null,null);
For some reason it doesn't like my args. What is everybody else using?
Re: SelectOnSc reen
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-09-2005 11:10 AM in reply to:
thenrich
I just use SelectOnScreen() in vb.net, works fine.
*Tony Tanzillo
Re: SelectOnSc reen
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-09-2005 11:18 AM in reply to:
thenrich
For ActiveX methods, you use System.Type.Missing if
you don't want to specify a value for an optional param.
--
http://www.caddzone.com
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
wrote in message news:4923358@discussion.autodesk.com...
I'm developing in C# and using the selectonscreen method of a selectionset. As folllows:
AcadSSCopy.SelectOnScreen(null,null);
For some reason it doesn't like my args. What is everybody else using?
you don't want to specify a value for an optional param.
--
http://www.caddzone.com
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006
http://www.acadxtabs.com
I'm developing in C# and using the selectonscreen method of a selectionset. As folllows:
AcadSSCopy.SelectOnScreen(null,null);
For some reason it doesn't like my args. What is everybody else using?
Re: SelectOnSc reen
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-09-2005 11:19 AM in reply to:
thenrich
Yea I know it works in VB.NET but C# dooen't play well with optional args.
