<?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: Get XRef Rotation .NET in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279680#M36349</link>
    <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Do yo have the names of Xref blocks in combobox ?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;How did you retrieved them ? by iterating through Block Table or by select all method ?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Are you sure that the names in the combobox that representing the Xrefs are existed into your drawing?&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Apr 2016 16:08:25 GMT</pubDate>
    <dc:creator>_Tharwat</dc:creator>
    <dc:date>2016-04-19T16:08:25Z</dc:date>
    <item>
      <title>Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6277910#M36345</link>
      <description>&lt;P&gt;I am new to the AutoCAD API and I am wondering how to find the rotation of an Xref? This is what I have so far.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Document&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; acadDoc = Autodesk.AutoCAD.ApplicationServices.&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Application&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.DocumentManager.MdiActiveDocument;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Database&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; docDB = acadDoc.Database;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Editor&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; ed;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;docDB = acadDoc.Database;&lt;/P&gt;&lt;P&gt;ed = acadDoc.Editor;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;using&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Transaction&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; tr = docDB.TransactionManager.StartTransaction())&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;BlockTable&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; blkTbl = (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;BlockTable&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;)docDB.BlockTableId.GetObject(&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;OpenMode&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;.ForRead);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;foreach&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;ObjectId&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; id &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;in&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; blkTbl)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;BlockTableRecord&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; blkTblRcd = (&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;BlockTableRecord&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;)id.GetObject(&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;OpenMode&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt;.ForRead);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;if&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; (blkTblRcd.Name == cmbxDrawingTitle.Text)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;blkTblRcd.Rotation; ?????&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gerald&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Apr 2016 21:34:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6277910#M36345</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-18T21:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6278239#M36346</link>
      <description>A block table record is like a definition of an xref (or block). A block reference is what gets inserted into model/paper space. So you can have multiple references to a single btr - just like blocks. You can find the block references a few ways. One is to use btr.GetBlockReferenceIds As shown here:&lt;BR /&gt;&lt;A href="http://adndevblog.typepad.com/autocad/2012/06/identify-the-number-of-reference-to-a-block.html" target="_blank"&gt;http://adndevblog.typepad.com/autocad/2012/06/identify-the-number-of-reference-to-a-block.html&lt;/A&gt;&lt;BR /&gt;One the reference (or references) is found you can use br.Rotation.</description>
      <pubDate>Tue, 19 Apr 2016 02:28:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6278239#M36346</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2016-04-19T02:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6278326#M36347</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;The rotation property can not be found in BlockTableRecord but in BlockReference.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Try this:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;        static public void XrefBlock()
        {
            Document doc = Application.DocumentManager.MdiActiveDocument;
            Database db = doc.Database;
            Editor ed = doc.Editor;
            TypedValue[] tv = { new TypedValue(0, "INSERT") };
            PromptSelectionResult sel = ed.SelectAll(new SelectionFilter(tv));
            if (sel.Status == PromptStatus.OK)
                using (Transaction tr = db.TransactionManager.StartTransaction())
            {
                foreach (ObjectId id in sel.Value.GetObjectIds())
                {
                    BlockReference rf = (BlockReference)tr.GetObject(id,OpenMode.ForRead);
                    BlockTableRecord xref = (BlockTableRecord)tr.GetObject(rf.BlockTableRecord, OpenMode.ForRead);
                 if (xref.IsFromExternalReference)
                    {
                        ed.WriteMessage("\nName of Xref: &amp;lt;" + xref.Name + "&amp;gt;. Rotation angle is: &amp;lt;" + Math.Round(rf.Rotation, 4) + "&amp;gt;.");
                    }                    
                }
                tr.Commit();
            }
        }&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Apr 2016 05:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6278326#M36347</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2016-04-19T05:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279380#M36348</link>
      <description>&lt;P&gt;_Tharwat in&amp;nbsp;your example it looks like you are using a selection set, and that is throwing me off.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I have is a combobox listing the attached xrefs, and when the user selects the item from the combobox, I need to get some information from the selected xref.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you point out to me where I am going wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;FONT size="2"&gt;        private void cmbxDrawingTitle_SelectedIndexChanged(object sender, EventArgs e)
        {
            Document acadDoc = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument;
            Database docDB = acadDoc.Database;
            Editor ed;

            docDB = acadDoc.Database;
            ed = acadDoc.Editor;

            using (Transaction tr = docDB.TransactionManager.StartTransaction())
            {&lt;BR /&gt;	        // Get the Block Table
                BlockTable blkTbl = (BlockTable)docDB.BlockTableId.GetObject(OpenMode.ForRead);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;        &lt;BR /&gt;		// loop through the Block Table
                foreach (ObjectId id in blkTbl)
                {
                    BlockReference rf = (BlockReference)tr.GetObject(id, OpenMode.ForRead);

                    BlockTableRecord xref = (BlockTableRecord)tr.GetObject(rf.BlockTableRecord, OpenMode.ForRead);
                    if (xref.IsFromExternalReference)
                    {
                        ed.WriteMessage("\nName of Xref: &amp;lt;" + xref.Name + "&amp;gt;. Rotation angle is: &amp;lt;" + Math.Round(rf.Rotation, 4) + "&amp;gt;.");
                    }                                       
                }
            }
        }&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gerald&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 14:48:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279380#M36348</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-19T14:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279680#M36349</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Do yo have the names of Xref blocks in combobox ?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;How did you retrieved them ? by iterating through Block Table or by select all method ?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Are you sure that the names in the combobox that representing the Xrefs are existed into your drawing?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 16:08:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279680#M36349</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2016-04-19T16:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279723#M36350</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;_Tharwat,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a pic of of the combobox and the xref manager. As you can see the they both show the same thing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG width="580" height="394" title="ACAD.JPG" alt="ACAD.JPG" src="https://forums.autodesk.com/t5/image/serverpage/image-id/233289iBC60BBFF89C477FA/image-size/original?v=lz-1&amp;amp;px=-1" border="0" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and here is the code that I used to populate the combobox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;        private void Form1_Load(object sender, EventArgs e)
        {
            Document acadDoc = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument;
            Database docDB = acadDoc.Database;
            Editor ed;

            docDB = acadDoc.Database;
            ed = acadDoc.Editor;  

            using (Transaction tr = docDB.TransactionManager.StartTransaction())
            {
                BlockTable blkTbl = (BlockTable)docDB.BlockTableId.GetObject(OpenMode.ForRead);

                foreach (ObjectId id in blkTbl)
                {
                    BlockTableRecord blkTblRcd = (BlockTableRecord)id.GetObject(OpenMode.ForRead);
                    if (blkTblRcd.IsFromExternalReference)
                    {
                        //blkTblRcd.UpgradeOpen();
                        cmbxDrawingTitle.Items.Add(blkTblRcd.Name.ToString());
                    }  
                }
            }
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gerald&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 16:20:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279723#M36350</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-19T16:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279823#M36351</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;have a play with this:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;            Document doc = App.DocumentManager.MdiActiveDocument;
            Database db = doc.Database;
            Editor ed = doc.Editor;
            TypedValue[] tv = { new TypedValue(0, "INSERT"), new TypedValue(2, cmbxDrawingTitle.SelectedItem.ToString()) };
            PromptSelectionResult sel = ed.SelectAll(new SelectionFilter(tv));
            if (sel.Status == PromptStatus.OK)
                using (Transaction tr = db.TransactionManager.StartTransaction())
                {
                    foreach (ObjectId id in sel.Value.GetObjectIds())
                    {
                        BlockReference rf = (BlockReference)tr.GetObject(id, OpenMode.ForRead);
                        BlockTableRecord xref = (BlockTableRecord)tr.GetObject(rf.BlockTableRecord, OpenMode.ForRead);
                        if (xref.IsFromExternalReference)
                        {
                            MessageBox.Show("\nName of Xref: &amp;lt;" + xref.Name + "&amp;gt;. Rotation angle is: &amp;lt;" + Math.Round(rf.Rotation, 4) + "&amp;gt;.");
                        }
                    }
                    tr.Commit();
                }  &lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Apr 2016 16:52:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279823#M36351</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2016-04-19T16:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279922#M36352</link>
      <description>&lt;P&gt;_Tharwat,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That did the trick, but what is the purpose of using the TypedValue and what benifit does the TypedValue bring to the table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gerald&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 17:32:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279922#M36352</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-19T17:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279957#M36353</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;_Tharwat,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That did the trick, but what is the purpose of using the TypedValue and what benifit does the TypedValue bring to the table?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Gerald&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;The TypedValue is to create a Selection Filter.&lt;/FONT&gt; &lt;A href="http://docs.autodesk.com/ACD/2013/ENU/index.html?url=files/GUID-125398A5-184C-4114-9212-A2FF28FC1F1D.htm,topicNumber=d30e726632" target="_self"&gt;HIT THIS LINK&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 17:43:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6279957#M36353</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2016-04-19T17:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6280064#M36354</link>
      <description>&lt;P&gt;Thanks for all the help _Tharwat it is much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gerald&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 18:24:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6280064#M36354</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-19T18:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Get XRef Rotation .NET</title>
      <link>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6280070#M36355</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;You are most welcome and I am happy to help.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 18:29:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/get-xref-rotation-net/m-p/6280070#M36355</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2016-04-19T18:29:50Z</dc:date>
    </item>
  </channel>
</rss>

