<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re : Dynamic Block Point Parameter Visibility in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6430722#M35743</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The EntryPoint isn't the same for 32 bits or 64 bits platform:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;32 bits: ?acdbGetAdsName@@YA?AW4ErrorStatus@Acad@@AAY01JVAcDbObjectId@@@Z&lt;/LI&gt;
&lt;LI&gt;64 bits: ?acdbGetAdsName@@YA?AW4ErrorStatus@Acad@@AEAY01_JVAcDbObjectId@@@Z&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;You can see &lt;A href="http://adndevblog.typepad.com/autocad/2014/07/how-to-find-all-fields-in-a-drawing.html" target="_blank"&gt;this topic&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jul 2016 06:56:25 GMT</pubDate>
    <dc:creator>_gile</dc:creator>
    <dc:date>2016-07-12T06:56:25Z</dc:date>
    <item>
      <title>Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6380454#M35739</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Posted this at the end of a post that had a solution so I don't think anyone looked at. Sorry for posting it again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://adndevblog.typepad.com/autocad/2012/05/accessing-visible-entities-in-a-dynamic-block.html" target="_blank" rel="nofollow"&gt;http://adndevblog.typepad.com/autocad/2012/05/accessing-visible-entities-in-a-dynamic-block.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi I'm having trouble with the code in the suggested solution above. I translated it to VB.net and I am getting an error EntryPoint "?" not found in acdb19.dll. I'm using acdb19.dll because it couldn't find acdb18.dll any suggestions would be much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Public Sub DynablockVisibilityStates()
            Dim doc As Document = Application.DocumentManager.MdiActiveDocument
            Dim db As Database = doc.Database
            Dim ed As Editor = doc.Editor
                        Dim per As PromptEntityResult = ed.GetEntity(vbLf + "Select Dynamic Block ")


            If per.Status &amp;lt;&amp;gt; PromptStatus.OK Then
                Return
            End If

            Using myTrans As Transaction = db.TransactionManager.StartTransaction()

                Dim ent As Entity = myTrans.GetObject(per.ObjectId, OpenMode.ForRead)
                Dim bref As BlockReference = Nothing
                If TypeOf ent Is BlockReference Then
                    bref = ent
                End If

                Dim bt As BlockTable = TryCast(myTrans.GetObject(db.BlockTableId, OpenMode.ForRead), BlockTable)
                               Dim btr As BlockTableRecord = myTrans.GetObject(bref.DynamicBlockTableRecord, OpenMode.ForRead)


                               If Not btr.IsDynamicBlock Then
                    ed.WriteMessage(vbLf &amp;amp; "Not a dynamic block :(")
                    Return
                End If
                If btr.ExtensionDictionary = Nothing Then
                    ed.WriteMessage(vbLf &amp;amp; "No ExtensionDictionary :(")
                    Return
                End If

                Dim dict As DBDictionary = TryCast(myTrans.GetObject(btr.ExtensionDictionary, OpenMode.ForRead), DBDictionary)
                If Not dict.Contains("ACAD_ENHANCEDBLOCK") Then
                    ed.WriteMessage(vbLf &amp;amp; "ACAD_ENHANCEDBLOCK Entry not found :(")
                    Return
                End If
                Dim graphId As ObjectId = dict.GetAt("ACAD_ENHANCEDBLOCK")
                Dim parameterIds As System.Collections.Generic.List(Of Object) = acdbEntGetObjects(graphId, 360)

                For Each parameterId As Object In parameterIds
                    Dim id As ObjectId = DirectCast(parameterId, ObjectId)

                    If id.ObjectClass.Name = "AcDbBlockVisibilityParameter" Then
                        Dim visibilityParam As System.Collections.Generic.List(Of TypedValue) = acdbEntGetTypedVals(id)
                        Dim enumerator As System.Collections.Generic.List(Of TypedValue).Enumerator = visibilityParam.GetEnumerator()

                        While enumerator.MoveNext()
                            If enumerator.Current.TypeCode = 303 Then
                                Dim group As String = DirectCast(enumerator.Current.Value, String)
                                enumerator.MoveNext()
                                Dim nbEntitiesInGroup As Integer = CInt(enumerator.Current.Value)
                                ed.WriteMessage((Convert.ToString(vbLf &amp;amp; " . Visibility Group: ") &amp;amp; group) + " Nb Entities in group: " + nbEntitiesInGroup)
                                For i As Integer = 0 To nbEntitiesInGroup - 1
                                    enumerator.MoveNext()
                                    Dim entityId As ObjectId = DirectCast(enumerator.Current.Value, ObjectId)
                                    Dim entity As Entity = TryCast(myTrans.GetObject(entityId, OpenMode.ForRead), Entity)
                                    ed.WriteMessage(vbLf &amp;amp; "    - " + entity.ToString() + " " + entityId.ToString())
                                Next

                            End If
                        End While


                        Exit For

                    End If
                Next
                myTrans.Commit()
            End Using

        End Sub



        Public Structure ads_name
            Private a As IntPtr
            Private b As IntPtr
        End Structure

        &amp;lt;Runtime.InteropServices.DllImport("acdb19.dll", CallingConvention:=System.Runtime.InteropServices.​CallingConvention.Cdecl, EntryPoint:="?acdbGetAdsName@@YA?AW4ErrorStatus@Ac​ad@@AAY01JVAcDbObjectId@@@Z")&amp;gt; _
        Public Shared Function acdbGetAdsName(ByRef name As ads_name, objId As ObjectId) As Integer
        End Function


        &amp;lt;Runtime.InteropServices.DllImport("acad.exe", CharSet:=System.Runtime.InteropServices.CharSet.An​si, CallingConvention:=System.Runtime.InteropServices.​CallingConvention.Cdecl, EntryPoint:="acdbEntGet")&amp;gt; _
        Public Shared Function acdbEntGet(ByRef ename As ads_name) As System.IntPtr
        End Function

        Private Function acdbEntGetObjects(id As ObjectId, dxfcode As Short) As System.Collections.Generic.List(Of Object)
            Dim result As New System.Collections.Generic.List(Of Object)()
            Dim name As New ads_name()
            Dim res As Integer = acdbGetAdsName(name, id)
            Dim rb As New ResultBuffer()
            Autodesk.AutoCAD.Runtime.Interop.AttachUnmanagedOb​ject(rb, acdbEntGet(name), True)
            Dim iter As ResultBufferEnumerator = rb.GetEnumerator()

            While iter.MoveNext()
                Dim typedValue As TypedValue = CType(iter.Current, TypedValue)
                If typedValue.TypeCode = dxfcode Then
                    result.Add(typedValue.Value)
                End If
            End While

            Return result
        End Function

        Private Function acdbEntGetTypedVals(id As ObjectId) As System.Collections.Generic.List(Of TypedValue)
            Dim result As New System.Collections.Generic.List(Of TypedValue)()
            Dim name As New ads_name()
            Dim res As Integer = acdbGetAdsName(name, id)
            Dim rb As New ResultBuffer()
            Autodesk.AutoCAD.Runtime.Interop.AttachUnmanagedOb​ject(rb, acdbEntGet(name), True)
            Dim iter As ResultBufferEnumerator = rb.GetEnumerator()

            While iter.MoveNext()
                result.Add(CType(iter.Current, TypedValue))
            End While

            Return result

        End Function



    End Class&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2016 14:49:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6380454#M35739</guid>
      <dc:creator>GeeHaa</dc:creator>
      <dc:date>2016-06-13T14:49:26Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6380795#M35740</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try with this EntryPoint:&lt;/P&gt;
&lt;PRE&gt;"?acdbGetAdsName@@YA?AW4ErrorStatus@Acad@@AEAY01_JVAcDbObjectId@@@Z"&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2016 16:59:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6380795#M35740</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-06-13T16:59:39Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6393456#M35741</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the reply. Unfortunately I get the same error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;An exception of type 'System.EntryPointNotFoundException' occurred in CheckVisibilityofPoints.dll but was not handled in user code&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Additional information: Unable to find an entry point named '?' in DLL 'acdb19.dll'.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;If there is a handler for this exception, the program may be safely continued.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Here is the modified Statement.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Runtime.InteropServices.DllImport("acdb19.dll", CallingConvention:=System.Runtime.InteropServices.CallingConvention.Cdecl, CharSet:=System.Runtime.InteropServices.CharSet.Ansi, EntryPoint:="?acdbGetAdsName@@YA?AW4ErrorStatus@Acad@@AEAY01_J​VAcDbObjectId@@@Z")&amp;gt; _&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public Shared Function acdbGetAdsName(ByRef name As ads_name, objId As ObjectId) As Integer&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Function&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;It actually crashes whet it hits this statement.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim res As Integer = acdbGetAdsName(name, id)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The variable "name" has the values A=0 and B=0&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Sorry I didn't see your reply right away.&lt;/DIV&gt;&lt;DIV&gt;Thanks again I appreciate the help.&lt;/DIV&gt;</description>
      <pubDate>Mon, 20 Jun 2016 13:21:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6393456#M35741</guid>
      <dc:creator>GeeHaa</dc:creator>
      <dc:date>2016-06-20T13:21:41Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6430207#M35742</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to have this answered as well or point me in another direction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 21:26:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6430207#M35742</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-11T21:26:36Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6430722#M35743</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The EntryPoint isn't the same for 32 bits or 64 bits platform:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;32 bits: ?acdbGetAdsName@@YA?AW4ErrorStatus@Acad@@AAY01JVAcDbObjectId@@@Z&lt;/LI&gt;
&lt;LI&gt;64 bits: ?acdbGetAdsName@@YA?AW4ErrorStatus@Acad@@AEAY01_JVAcDbObjectId@@@Z&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;You can see &lt;A href="http://adndevblog.typepad.com/autocad/2014/07/how-to-find-all-fields-in-a-drawing.html" target="_blank"&gt;this topic&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 06:56:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6430722#M35743</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-07-12T06:56:25Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6430858#M35744</link>
      <description>&lt;P&gt;For R19 and later, you also have to replace "acad.exe" with "accore.dll" to P/Invoke acdbEntGet() method.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 08:55:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6430858#M35744</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-07-12T08:55:33Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6431298#M35745</link>
      <description>&lt;P&gt;Thanks for the Responses&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks to you both. It works now. Unfortunately it doesn't retrieve the Point Parameters in any of the Visibility groups. Its only showing entities. Is there a way to see the point parameters as well?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 13:31:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6431298#M35745</guid>
      <dc:creator>GeeHaa</dc:creator>
      <dc:date>2016-07-12T13:31:44Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6431665#M35746</link>
      <description>&lt;P&gt;What are you trying to achieve?&lt;/P&gt;
&lt;P&gt;You can easily access to the dynamic properties and their values and you probably know which entities are visible according to the visibility state.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;        [CommandMethod("dynprops")]
        public void GetDynamicProperties()
        {
            var doc = AcAp.DocumentManager.MdiActiveDocument;
            var db = doc.Database;
            var ed = doc.Editor;
            var opts = new PromptEntityOptions("\nSelect a block: ");
            opts.SetRejectMessage("Must be a block.");
            opts.AddAllowedClass(typeof(BlockReference), true);
            var res = ed.GetEntity(opts);
            if (res.Status != PromptStatus.OK)
                return;
            using (var tr = db.TransactionManager.StartTransaction())
            {
                var br = (BlockReference)tr.GetObject(res.ObjectId, OpenMode.ForRead);
                if (br.IsDynamicBlock)
                {
                    foreach (DynamicBlockReferenceProperty prop in br.DynamicBlockReferencePropertyCollection)
                    {
                        ed.WriteMessage("\n{0} ({1}) = {2}", prop.PropertyName, prop.PropertyTypeCode, prop.Value);
                    }
                }
                tr.Commit();
            }
        }&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Jul 2016 15:35:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6431665#M35746</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-07-12T15:35:22Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6431816#M35747</link>
      <description>&lt;P&gt;I have a program that attaches polylines to point parameters on Dynamic blocks right now it connects to all the points on the block whether they are visible or not. I just want to connect to the visible ones.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 16:37:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6431816#M35747</guid>
      <dc:creator>GeeHaa</dc:creator>
      <dc:date>2016-07-12T16:37:29Z</dc:date>
    </item>
    <item>
      <title>Re : Dynamic Block Point Parameter Visibility</title>
      <link>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6433865#M35748</link>
      <description>&lt;P&gt;These are the typecodes and values for the two&amp;nbsp;PointParameters in&amp;nbsp;a particular Dynamic Block&amp;nbsp; I'm probably thinking about this all wrong (I don't have much experience with dictionaries) but I have the objectIDs of the Point parameters. Is there a class I could cast&amp;nbsp;them &amp;nbsp;into that would give me a visibility state? Internal.databaseServices.Block1PointParameter has everything else but a Visibility State. I even checked the XData..There must be a way to do this. When I select this block in different visibility states only the point parameters of that state show(as grips). Otherwise you cant see them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the blocks (there are a few hundred of them) have different names for visibility states so I can't tell which parameters go with what states. Since programmatically I can only get entities&amp;nbsp;from the&amp;nbsp;Visibility states.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Again for all your help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;- -1 (140699525757456)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 0 BLOCKPOINTPARAMETER&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 330 (140699525757376)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 5 459&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbEvalExpr&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 90 5&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 98 31&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 99 106&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbBlockElement&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 300 Point&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 98 31&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 99 106&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 1071 0&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbBlockParameter&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 280 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 281 0&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbBlock1PtParameter&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 1010 (1.5,-0.125,0)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 93 6&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 170 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 91 6&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 301 DisplacementX&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 171 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 92 6&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 302 DisplacementY&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbBlockPointParameter&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 303 ConnPt01&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 304&amp;nbsp;Connection Point 01&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 1011 (1.6875,-0.125,0)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - -1 (140699525757552)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 0 BLOCKPOINTPARAMETER&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 330 (140699525757376)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 5 45F&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbEvalExpr&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 90 16&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 98 31&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 99 106&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbBlockElement&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 300 Point1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 98 31&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 99 106&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 1071 0&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbBlockParameter&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 280 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 281 0&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbBlock1PtParameter&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 1010 (1.5,-0.875,0)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 93 17&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 170 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 91 17&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 301 DisplacementX&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 171 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 92 17&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 302 DisplacementY&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 100 AcDbBlockPointParameter&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 303 ConnPt02&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 304 Connection Point 02&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - 1011 (1.6875,-0.875,0)&lt;/DIV&gt;</description>
      <pubDate>Wed, 13 Jul 2016 14:16:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/dynamic-block-point-parameter-visibility/m-p/6433865#M35748</guid>
      <dc:creator>GeeHaa</dc:creator>
      <dc:date>2016-07-13T14:16:40Z</dc:date>
    </item>
  </channel>
</rss>

