GetBoundingBox is Returning 0

GetBoundingBox is Returning 0

amitnkukanur
Collaborator Collaborator
438 Views
1 Reply
Message 1 of 2

GetBoundingBox is Returning 0

amitnkukanur
Collaborator
Collaborator

This is a part of my code which i am using to calculate the locations of Texts using GetBoundingBox. The problem is GetBoundingBox is Returning 0 when i execute the code.

 

 

For index As Integer = 0 To100

' Get single item from selection
Dim AcEnt As Object = AcSpace.GetType.InvokeMember("Item", BindingFlags.InvokeMethod, Nothing, AcSpace, New Object() {index})
' Get Object name
Dim objName As String = AcEnt.GetType.InvokeMember("ObjectName", BindingFlags.GetProperty, Nothing, AcEnt, Nothing).ToString()

Dim textStr As String = String.Empty

If objName = "AcDbText" Then
textStr = AcEnt.GetType.InvokeMember("TextString", BindingFlags.GetProperty, Nothing, AcEnt, Nothing).ToString()

Dim aPoint1(2) As Double
Dim aPoint2(2) As Double

Dim params As Object
params = {aPoint1, aPoint2}
Dim DataParam As Double = AcEnt.GetType().InvokeMember("GetBoundingBox", BindingFlags.InvokeMethod, Nothing, AcEnt, params)
End If

Next

 

Can you suggest me how to get locations of Texts

Senior Software Engineer
0 Likes
439 Views
1 Reply
Reply (1)
Message 2 of 2

Hallex
Advisor
Advisor

See my last code here:

http://forums.autodesk.com/t5/NET/Select-All/td-p/3551324

 

~'J'~

_____________________________________
C6309D9E0751D165D0934D0621DFF27919
0 Likes