<?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 : Preview Window in AutoCAD using .NET API in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5818822#M38637</link>
    <description>Thanks for your help...! Just one question will I be able to rotate objects in picture box through Mouse?</description>
    <pubDate>Wed, 16 Sep 2015 04:38:20 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-09-16T04:38:20Z</dc:date>
    <item>
      <title>Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5816303#M38635</link>
      <description>Hi everyone, I want to build the application such like that it shows preview in the GUI (User Interface) before it draw anything in the AutoCAD. Note that I want to create 3D objects in AutoCAD and if possible then preview window should be allow user to rotate the 3D objects using mouse in preview window. I hope this much is enough to understand my requirement. Thanks in advance.</description>
      <pubDate>Mon, 14 Sep 2015 18:29:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5816303#M38635</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-14T18:29:10Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5817129#M38636</link>
      <description>&lt;P&gt;You can render to a picture box this way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Manager gsm = doc.GraphicsManager;

using (var view = new View())
{&lt;BR /&gt;  var cvport = (short)Application.GetSystemVariable("CVPORT");
  doc.GraphicsManager.SetViewFromViewport(view, cvport);
  view.SetView(new Point3d(0, 0, 1), Point3d.Origin, Vector3d.YAxis, pictureBox.Width, 
    pictureBox.Height);
  var descriptor = new KernelDescriptor();
  descriptor.addRequirement(Autodesk.AutoCAD.UniqueString.Intern("3D Drawing"));
  GraphicsKernel kernel = Manager.AcquireGraphicsKernel(descriptor);
  Device dev = gsm.CreateAutoCADOffScreenDevice(kernel);
  using (dev)
  {
    dev.OnSize(pictureBox.Size);
    dev.DeviceRenderType = RendererType.Default;
    dev.BackgroundColor = Color.White;
    dev.Add(view);
    dev.Update();
    try
    {
      using (Model model = gsm.CreateAutoCADModel(kernel))
      {
        var extents3D = new Extents3d();
        var line = new Line(p1, p2);
        
        [..]
        
        view.Add(line, model);
        extents3D.AddExtents(line.Bounds.Value);
        
        view.ZoomExtents(extents3D.MinPoint, extents3D.MaxPoint);
        view.Zoom(0.9);
      }
      pictureBox.Image = view.GetSnapshot(new Rectangle(0, 0, pictureBox.Width - 1,
        pictureBox.Height - 1));
    finally
    {
      view.EraseAll();
      dev.Erase(view);
      if (null != line)
        line.Dispose();      
    }
  }
}&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Sep 2015 07:16:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5817129#M38636</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2015-09-15T07:16:43Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5818822#M38637</link>
      <description>Thanks for your help...! Just one question will I be able to rotate objects in picture box through Mouse?</description>
      <pubDate>Wed, 16 Sep 2015 04:38:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5818822#M38637</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-16T04:38:20Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5818986#M38638</link>
      <description>&lt;P&gt;No this code is for a static preview. To get orbit functionality, you'll need to write a custom control which will handle the mouse movements and call view.Orbit to update the view.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 07:58:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5818986#M38638</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2015-09-16T07:58:47Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5819809#M38639</link>
      <description>&lt;P&gt;A slightly sideways but less development-intensive option may be to generate a temporary&amp;nbsp;3D DWF and then pass it to a separate&amp;nbsp;Design Review or Navisworks Freedom session; there might also be the option to embed a&amp;nbsp;Navisworks viewer object.&amp;nbsp; All the navigation tools, none of the labor.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 16:15:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5819809#M38639</guid>
      <dc:creator>dgorsman</dc:creator>
      <dc:date>2015-09-16T16:15:18Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5819940#M38640</link>
      <description>&lt;P&gt;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2008/06/autocad-net-ver.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2008/06/autocad-net-ver.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 17:20:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5819940#M38640</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2015-09-16T17:20:20Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5820069#M38641</link>
      <description>&lt;P&gt;Here is a complete control:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;using System;
using System.Drawing;
using System.Windows.Forms;
using Autodesk.AutoCAD;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.Geometry;
using Autodesk.AutoCAD.GraphicsSystem;
using Application = Autodesk.AutoCAD.ApplicationServices.Application;
using View = Autodesk.AutoCAD.GraphicsSystem.View;

namespace TestCS
{
    public partial class PreviewUserControl : UserControl
    {
        #region Fields

        Device device;

        Extents3d extents;

        Model model;

        Solid3d solid;

        Point start;

        View view;

        #endregion

        #region Constructors

        public PreviewUserControl()
        {
            InitializeComponent();

            SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint, true);
        }

        #endregion

        #region Methods

        void CleanUp()
        {
            if (solid != null)
            {
                solid.Dispose();
                solid = null;
            }

            if (model != null)
            {
                model.Dispose();
                model = null;
            }

            if (view != null)
            {
                // View need to be removed from device
                device?.EraseAll();

                view.Dispose();
                view = null;
            }

            if (device != null)
            {
                device.Dispose();
                device = null;
            }
        }

        protected override void CreateHandle()
        {
            base.CreateHandle();

            if (DesignMode) return;

            Document doc = Application.DocumentManager.MdiActiveDocument;
            Manager gsm = doc.GraphicsManager;

            var descriptor = new KernelDescriptor();
            descriptor.addRequirement(UniqueString.Intern("3D Drawing"));
            GraphicsKernel kernel = Manager.AcquireGraphicsKernel(descriptor);
            device = gsm.CreateAutoCADDevice(kernel, Handle);
            device.OnSize(Size);

            view = new View();
            view.SetView(new Point3d(1, 1, 1), view.Target, view.UpVector, view.FieldWidth, view.FieldHeight);
            device.Add(view);

            model = gsm.CreateAutoCADModel(kernel);
            extents = new Extents3d();

            solid = new Solid3d();
            solid.CreateBox(1, 1, 1);
            solid.ColorIndex = 1;
            view.Add(solid, model);
            if (solid.Bounds != null) extents.AddExtents(solid.Bounds.Value);

            HandleDestroyed += PreviewUserControl_HandleDestroyed;
        }

        protected override void OnMouseDoubleClick(MouseEventArgs e)
        {
            base.OnMouseDoubleClick(e);
            view.ZoomExtents(extents.MinPoint, extents.MaxPoint);
            RefreshView();
        }

        protected override void OnMouseDown(MouseEventArgs e)
        {
            base.OnMouseDown(e);
            start = e.Location;
        }

        protected override void OnMouseMove(MouseEventArgs e)
        {
            base.OnMouseMove(e);
            if (e.Button != MouseButtons.Left) return;
            view.Orbit(Math.PI * (start.X - e.X) / Width, Math.PI * (e.Y - start.Y) / Height);
            start = e.Location;
            RefreshView();
        }

        protected override void OnPaint(PaintEventArgs e)
        {
            RefreshView();
        }

        protected override void OnSizeChanged(EventArgs e)
        {
            base.OnSizeChanged(e);
            device?.OnSize(Size);
            RefreshView();
        }

        void PreviewUserControl_HandleDestroyed(object sender, EventArgs e)
        {
            CleanUp();
        }

        void RefreshView()
        {
            if (view == null) return;
            view.Invalidate();
            view.Update();
        }

        #endregion
    }
}&lt;/PRE&gt;
&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/189067iE7EBC28C9D0262BA/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="2015-09-16_201848.png" title="2015-09-16_201848.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2015 18:22:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5820069#M38641</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2015-09-16T18:22:47Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5820801#M38642</link>
      <description>Hi, I am not able to build the Application due to KernelDescriptor. var descriptor = new KernelDescriptor(); 1. May I know which references I have to add for KernelDescriptor? Is this class belonging to AutoCAD APIs or Microsoft(Visual Studio) APIs ? 2. This code is for AutoCAD .NET API not for ObjectARX. Am I Right ?</description>
      <pubDate>Thu, 17 Sep 2015 05:21:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5820801#M38642</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-17T05:21:23Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5820855#M38643</link>
      <description>&lt;P&gt;KernelDescriptor is for AutoCAD 2015 and more. Before that,&amp;nbsp;you only need to pass the window handle to the CreateAutoCADDevice method:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;device = gsm.CreateAutoCADDevice(Handle);&lt;/PRE&gt;
&lt;P&gt;1. KernelDescriptor is in the Autodesk.AutoCAD.GraphicsSystem namespace (Acdbmgd.dll). It's an AutoCAD API.&lt;/P&gt;
&lt;P&gt;2. It's for .NET API, not for ObjectARX (C++) API&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2015 06:36:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/5820855#M38643</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2015-09-17T06:36:01Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/6290680#M38644</link>
      <description>Bonjour, Je viens d'utiliser votre exemple (super au passage), et j'aimerai après l'orbite pouvoir revenir à une vue de dessus... sans succès. :(( Cordialement.</description>
      <pubDate>Mon, 25 Apr 2016 12:53:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/6290680#M38644</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-25T12:53:20Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/6292641#M38645</link>
      <description>&lt;P&gt;Pour les vues standards (ortho/isométrique), il faut utiliser la méthode SetView qui permet de repositionner la caméra. Pour une vue de dessus (vue du plan XY), ça donne ça :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;view.SetView(view.Target + Vector3d.ZAxis, view.Target, Vector3d.YAxis, view.FieldWidth, view.FieldHeight);&lt;/PRE&gt;
&lt;P&gt;On conserve la cible et les dimensions du champ de vue, on positionne la caméra juste au dessus de la cible et on réaligne le haut de la caméra avec l'axe Y.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2016 07:43:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/6292641#M38645</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2016-04-26T07:43:05Z</dc:date>
    </item>
    <item>
      <title>Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/6305058#M38646</link>
      <description>&lt;P&gt;Merci pour votre réponse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cordialement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Patrick.&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 06:06:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/6305058#M38646</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-03T06:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/7384648#M38647</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="捕获.PNG" style="width: 583px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/402060iF15C47A28FDDDD1A/image-size/large?v=v2&amp;amp;px=999" role="button" title="捕获.PNG" alt="捕获.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I lack of some namespace or class KernelDescriptor is a new one?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2017 01:52:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/7384648#M38647</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-16T01:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/7385152#M38648</link>
      <description>&lt;P&gt;If you read through the thread carefully, you'd have seen it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FRFR1426 answered it on 09-16-2015: The name space is Autodesk.AutoCAD.GraphicsSystem (in acdbmgd.dll).&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2017 13:27:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/7385152#M38648</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2017-09-16T13:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/7385570#M38649</link>
      <description>&lt;P&gt;&amp;nbsp;@Anonymous&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think Norman means&amp;nbsp;&lt;SPAN class="MessagesPositionInThread"&gt;Post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://forums.autodesk.com/t5/net/preview-window-in-autocad-using-net-api/m-p/5820855#M45995" target="_blank"&gt;9&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;of 14&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The dates displayed are expressed in local time and may differ for readers in differing locations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Sep 2017 22:52:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/7385570#M38649</guid>
      <dc:creator>kerry_w_brown</dc:creator>
      <dc:date>2017-09-16T22:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/8014631#M38650</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;How do you incorporate 'LineWeight' on this?&lt;BR /&gt;I wanted to adapt this on our app's preview window, and I wanted to add a feature where an object appears to be highlighted (in a sense that the line weight would appear bolder) on the snapshot.&lt;/P&gt;</description>
      <pubDate>Mon, 21 May 2018 06:47:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/8014631#M38650</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-21T06:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/11078349#M38651</link>
      <description>Thanks for the control, it works great. Is it possible to add zoom-in and zoom-out functionality with the mouse wheel?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;A. Taha</description>
      <pubDate>Sat, 02 Apr 2022 10:08:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/11078349#M38651</guid>
      <dc:creator>A_Taha</dc:creator>
      <dc:date>2022-04-02T10:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/11078726#M38652</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You can override the OnMouseWheel event handler.&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;        protected override void OnMouseWheel(MouseEventArgs e)
        {
            base.OnMouseWheel(e);
            if (0 &amp;lt; e.Delta)
                view.Zoom(1.6);
            else
                view.Zoom(0.625);
            RefreshView();
        }&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Apr 2022 16:08:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/11078726#M38652</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2022-04-02T16:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/13873516#M85998</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;by the way is it possible to preview hatch entity in this control?&lt;/P&gt;&lt;P&gt;I try one time to do it but there is problem that hatch should be database resident when you can set closed area entity to it.&lt;/P&gt;&lt;P&gt;Br. Veli&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 13:25:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/13873516#M85998</guid>
      <dc:creator>veli_vaisanen</dc:creator>
      <dc:date>2025-10-30T13:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Preview Window in AutoCAD using .NET API</title>
      <link>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/13873926#M86006</link>
      <description>&lt;P&gt;With basic entity types, You have to add the entity to the database or add it to the model if the entity is not in a database. Although I am not sure if hatches that are not database-resident can be displayed by just adding them to the model because they may have a dependence on the database.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Beware, that there are issues with solid fill (both hatches and wide polylines). The issue can be solved for wide polyLines by using a DrawableOverrule, but solid-filled hatches are another matter.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 22:14:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/preview-window-in-autocad-using-net-api/m-p/13873926#M86006</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2025-10-30T22:14:11Z</dc:date>
    </item>
  </channel>
</rss>

