Ну,возможно что-то типа:
Dim attr, AttrDin
AttrDin = objBlref.GetDynamicBlockProperties
For Each attr In AttrDin
If attr.PropertyName = "Distanse" Then
x = attr.Value
End If
Next
Здесь objBlref- объект типа AcadBlockReference (к примеру, полученный с помощью:
Dim varPoint As Variant
Dim objBlref As Object
ThisDrawing.Utility.GetEntity objBlref, varPoint, "Укажите блок"
If TypeOf objBlref Is AcadBlockReference Then
...
'вышеприведенный код
...
end if
), x- переменная, в которую считывается значение свойства "Distanse"