So can we do something like this to control it’s position?
if isinstance(Viewport, DB.Viewport):
Centerpoint = Viewport.GetBoxCenter().ToPoint3d()
Viewport.LabelOffset(50,50,50)
elif Viewport == None:
show_remark(“Please connect a DB.Viewport Element to the input.”)
else:
show_warning(“Please connect a DB.Viewport Element to the input.”)
This one has been bothered me for a long time…
What is exactly define the “Viewport” boundary?
It seems to have a specific offset distance from crop region but don’t know where to control.
I don’t want to directly adjust the internal parameters of the type; instead, I want to adjust them by selecting the type name.Otherwise, it will affect the titles of other views.