PickfirstSelectionSet Example

Using Programming Languages other than VBA

Sub Example_PickfirstSelectionSet()
	' This example lists all the objects in the pickfirst selection set.
	' Before running this example, create some objects in the active
	' drawing and select those objects. The objects currently selected
	' in the active drawing will be returned in the pickfirst selection set.
		
	Dim pfSS As AcadSelectionSet
	Dim ssobject As AcadEntity
	Dim msg As String
	msg = vbCrLf

	Set pfSS = ThisDrawing.PickfirstSelectionSet
	For Each ssobject In pfSS
		msg = msg & vbCrLf & ssobject.ObjectName
	Next ssobject
	MsgBox "The Pickfirst selection set contains: " & msg

End Sub

 

   Comments? 
500 Internal Server Error

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at webmaster@entercad.forsenergy.ru to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.