SelectedEntities in the different versions

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
MartyBob
Posts: 1
Joined: 13 Nov 2009, 02:17

SelectedEntities in the different versions

Post by MartyBob » 16 Nov 2009, 07:08

Does the following code work in the standard edition or just the Professional?


Dim SL AsSortedList, sTest As String = "", sKey As String, sItemType As String

SL = cadImageFld.SelectedEntities

For ICnt As Integer = 0 To cadImageFld.SelectEntitiesCount - 1
sKey = SL.GetKey(ICnt).ToString()
sItemType = SL.GetByIndex(ICnt).ToString()
sTest &= "Key is:" & sKey & " Item is " & sItemType & vbCrLf
Next

Also, Is there a help file that only applies to the Standard edition?
Thank you very much , Mark B.

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Re: SelectedEntities in the different versions

Post by support » 17 Nov 2009, 17:09

Hello.
The code sample will work in standard edition too. The help system includes CADImport.Professional section. It contains description of the professional edition elements. All other sections relate to both CAD Import .NET versions.

Alexander.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply