<?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: Batch Printing pdfs from paperspace - printing autocad drawings in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/6210907#M36838</link>
    <description>&lt;P&gt;Thanks for the info. It worked the only thing is the DestinationName doesn't seem to change. Do I need to replace this too?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Dim layoutStrings() As String = Nothing
        Dim LayoutList As List(Of DrawLayoutClass) = New List(Of DrawLayoutClass)
        Dim CurLayElement As DrawLayoutClass = New DrawLayoutClass
        For x As Integer = 0 To UBound(listOfFiles)
            Using acCurDB2 As New Database(False, True)
                CurLayElement.DrawingNameWPath = listOfFiles(x)
                acCurDB2.ReadDwgFile(listOfFiles(x), FileOpenMode.OpenForReadAndAllShare, True, "")
                Dim layerStr As List(Of String) = Nothing

                Using acTrans As Transaction = acCurDB2.TransactionManager.StartTransaction
                    Dim layoutdict As DBDictionary = acTrans.GetObject(acCurDB2.LayoutDictionaryId, OpenMode.ForRead)
                    ReDim layoutStrings(layoutdict.Count - 2)
                    For Each Ent As DBDictionaryEntry In layoutdict
                        Dim desc_Txt As String = ""
                        Dim lay As Layout = acTrans.GetObject(Ent.Value, OpenMode.ForRead)
                        Dim layBTRId As ObjectId = lay.BlockTableRecordId
                        Dim btr As BlockTableRecord = TryCast(layBTRId.GetObject(OpenMode.ForRead), BlockTableRecord)
                        If LBO_Layout.Text = "All Layouts" Then
                            If (Not lay.LayoutName = "Model") Then
                                CurLayElement.Layouts.Add(lay.LayoutName)
                                CurLayElement.Title.Add(lay.LayoutName)
                            End If

                        Else
                            If StrComp(lay.LayoutName, LBO_Layout.Text, CompareMethod.Text) = 0 Then
                                CurLayElement.Layouts.Add(lay.LayoutName)
                            End If

                        End If
                    Next Ent
                    CurLayElement.Pagsetup = "BatchPageSetup"
                    CurLayElement.PageSetupDrawing = sourceStr + "\" + "BatchPlotConfig" + ".dwg"
                    LayoutList.Add(CurLayElement)
                    CurLayElement = New DrawLayoutClass
                End Using
                'acCurDB2.CloseInput(True)
            End Using
        Next x


        Using dsdDwgFiles As New DsdEntryCollection

            ' Add first drawing file
            Using dsdDwgFile1 As New DsdEntry
                For x As Integer = 0 To LayoutList.Count - 1
                    ' Set the file name and layout
                    For z = 0 To LayoutList(x).Layouts.Count - 1
                        dsdDwgFile1.DwgName = LayoutList(x).DrawingNameWPath
                        dsdDwgFile1.Layout = LayoutList(x).Layouts(z)
                        dsdDwgFile1.Title = LayoutList(x).Title(z)

                        ' Set the page setup override
                        dsdDwgFile1.Nps = LayoutList(x).Pagsetup
                        dsdDwgFile1.NpsSourceDwg = LayoutList(x).PageSetupDrawing

                        dsdDwgFiles.Add(dsdDwgFile1)
                    Next z

                Next x

            End Using



            ' Set the properties for the DSD file and then write it out
            Using dsdFileData As New DsdData

                ' Set the target information for publishing
                Dim destfile As String = Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX") + _
                    getPDFFilename(Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX")) + ".pdf"
                dsdFileData.DestinationName = destfile
                dsdFileData.ProjectPath = Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX") + "\"
                dsdFileData.SheetType = SheetType.MultiPdf
                If File.Exists(sourceStr + "\batchdrawings2.dsd") Then
                    File.Delete(sourceStr + "\batchdrawings2.dsd")
                End If

                ' Set the drawings that should be added to the publication
                dsdFileData.SetDsdEntryCollection(dsdDwgFiles)

                ' Set the general publishing properties
                dsdFileData.LogFilePath = Environment.GetFolderPath( _
                    Environment.SpecialFolder.MyDocuments) &amp;amp; "\myBatch.txt"

                ' Create the DSD file
                dsdFileData.WriteDsd(sourceStr + "\batchdrawings2.dsd")

                'If StrComp(Ptype, "layout", CompareMethod.Text) &amp;lt;&amp;gt; 0 Then
                'add the following line in the dsd file 
                'Setup=BatchPageSetup|C:\Users\xxx\Documents\PDFS\BatchPlotConfig.dwg
                Dim filelines As List(Of String) = New List(Of String)
                Dim sr As StreamReader = New StreamReader(sourceStr + "\batchdrawings2.dsd")
                If sr.Peek &amp;gt;= 0 Then
                    Dim tempstr As String = sr.ReadLine
                    Do While sr.Peek() &amp;gt;= 0
                        filelines.Add(tempstr)
                        tempstr = sr.ReadLine
                    Loop
                End If
                sr.Close()
                Dim sw As StreamWriter = New StreamWriter(sourceStr + "\batchdrawings2.dsd")
                For x = 0 To filelines.Count - 1
                    If StrComp(Mid(filelines(x), 1, 6), "Setup=", CompareMethod.Binary) = 0 Then
                        sw.WriteLine("Setup=" + "BatchPageSetup" + "|" + sourceStr + "\" + "BatchPlotConfig" + ".dwg")
                    Else
                        sw.WriteLine(filelines(x))
                    End If
                Next
                sw.Close()
                'End If

                Try
                    ' Publish the specified drawing files in the DSD file, and
                    ' honor the behavior of the BACKGROUNDPLOT system variable
                    Using dsdDataFile As New DsdData
                        dsdDataFile.ReadDsd(sourceStr + "\batchdrawings2.dsd")

                        ' Get the DWG to PDF.pc3 and use it as a 
                        ' device override for all the layouts
                        Dim acPlCfg As PlotConfig = _
                            PlotConfigManager.SetCurrentConfig("DWG to PDF.PC3")

                        Autodesk.AutoCAD.ApplicationServices.Application.Publisher.PublishExecute(dsdDataFile, acPlCfg)
                    End Using

                Catch es As Autodesk.AutoCAD.Runtime.Exception
                    MsgBox(es.Message)
                End Try
            End Using
        End Using&lt;/PRE&gt;</description>
    <pubDate>Fri, 11 Mar 2016 13:16:27 GMT</pubDate>
    <dc:creator>GeeHaa</dc:creator>
    <dc:date>2016-03-11T13:16:27Z</dc:date>
    <item>
      <title>Batch Printing pdfs from paperspace - printing autocad drawings</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/6207588#M36836</link>
      <description>&lt;PRE&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I am trying to publish a set of drawings to a multisheet PDF file. &lt;BR /&gt;The pdf is created with all the drawings in it but the Pagesetup I specified isn't being used. &lt;BR /&gt;It just seems to default to whatever is in the drawing. &lt;BR /&gt;I tried to publish manually and the pagesetup works.&lt;BR /&gt;Can anyone tell me what I am missing? I modified code I found in the developer area.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; Dim layoutStrings() As String = Nothing
        Dim LayoutList As List(Of DrawLayoutClass) = New List(Of DrawLayoutClass)
        Dim CurLayElement As DrawLayoutClass = New DrawLayoutClass
        For x As Integer = 0 To UBound(listOfFiles)
            Using acCurDB2 As New Database(False, True)
                CurLayElement.DrawingNameWPath = listOfFiles(x)
                acCurDB2.ReadDwgFile(listOfFiles(x), FileOpenMode.OpenForReadAndAllShare, True, "")
                Dim layerStr As List(Of String) = Nothing

                Using acTrans As Transaction = acCurDB2.TransactionManager.StartTransaction
                    Dim layoutdict As DBDictionary = acTrans.GetObject(acCurDB2.LayoutDictionaryId, OpenMode.ForRead)
                    ReDim layoutStrings(layoutdict.Count - 2)
                    For Each Ent As DBDictionaryEntry In layoutdict
                        Dim desc_Txt As String = ""
                        Dim lay As Layout = acTrans.GetObject(Ent.Value, OpenMode.ForRead)
                        Dim layBTRId As ObjectId = lay.BlockTableRecordId
                        Dim btr As BlockTableRecord = TryCast(layBTRId.GetObject(OpenMode.ForRead), BlockTableRecord)
                        If LBO_Layout.Text = "All Layouts" Then
                            If (Not lay.LayoutName = "Model") Then
                                CurLayElement.Layouts.Add(lay.LayoutName)
                                CurLayElement.Title.Add(lay.LayoutName)
                            End If

                        Else
                            If StrComp(lay.LayoutName, LBO_Layout.Text, CompareMethod.Text) = 0 Then
                                CurLayElement.Layouts.Add(lay.LayoutName)
                            End If

                        End If
                    Next Ent
                    CurLayElement.Pagsetup = "BatchPageSetup"
                    CurLayElement.PageSetupDrawing = sourceStr + "\" + "BatchPlotConfig" + ".dwg"
                    LayoutList.Add(CurLayElement)
                    CurLayElement = New DrawLayoutClass
                End Using
                'acCurDB2.CloseInput(True)
            End Using
        Next x


        Using dsdDwgFiles As New DsdEntryCollection

            ' Add first drawing file
            Using dsdDwgFile1 As New DsdEntry
                For x As Integer = 0 To LayoutList.Count - 1
                    ' Set the file name and layout
                    For z = 0 To LayoutList(x).Layouts.Count - 1
                        dsdDwgFile1.DwgName = LayoutList(x).DrawingNameWPath
                        dsdDwgFile1.Layout = LayoutList(x).Layouts(z)
                        dsdDwgFile1.Title = LayoutList(x).Title(z)

                        ' Set the page setup override
                        dsdDwgFile1.Nps = LayoutList(x).Pagsetup
                        dsdDwgFile1.NpsSourceDwg = LayoutList(x).PageSetupDrawing

                        dsdDwgFiles.Add(dsdDwgFile1)
                    Next z

                Next x

            End Using

           

            ' Set the properties for the DSD file and then write it out
            Using dsdFileData As New DsdData

                ' Set the target information for publishing
                Dim destfile As String = Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX") + _
                    getPDFFilename(Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX")) + ".pdf"
                dsdFileData.DestinationName = destfile
                dsdFileData.ProjectPath = Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX") + "\"
                dsdFileData.SheetType = SheetType.MultiPdf
                If File.Exists(sourceStr + "\batchdrawings2.dsd") Then
                    File.Delete(sourceStr + "\batchdrawings2.dsd")
                End If

                ' Set the drawings that should be added to the publication
                dsdFileData.SetDsdEntryCollection(dsdDwgFiles)

                ' Set the general publishing properties
                dsdFileData.LogFilePath = Environment.GetFolderPath( _
                    Environment.SpecialFolder.MyDocuments) &amp;amp; "\myBatch.txt"

                ' Create the DSD file
                dsdFileData.WriteDsd(sourceStr + "\batchdrawings2.dsd")

                Try
                    ' Publish the specified drawing files in the DSD file, and
                    ' honor the behavior of the BACKGROUNDPLOT system variable
                    Using dsdDataFile As New DsdData
                        dsdDataFile.ReadDsd(sourceStr + "\batchdrawings2.dsd")

                        ' Get the DWG to PDF.pc3 and use it as a 
                        ' device override for all the layouts
                        Dim acPlCfg As PlotConfig = _
                            PlotConfigManager.SetCurrentConfig("DWG to PDF.PC3")

                        Autodesk.AutoCAD.ApplicationServices.Application.Publisher.PublishExecute(dsdDataFile, acPlCfg)
                    End Using

                Catch es As Autodesk.AutoCAD.Runtime.Exception
                    MsgBox(es.Message)
                End Try
            End Using
        End Using&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Mar 2016 22:41:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/6207588#M36836</guid>
      <dc:creator>GeeHaa</dc:creator>
      <dc:date>2016-03-09T22:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Printing pdfs from paperspace - printing autocad drawings</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/6207919#M36837</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I feel DSD file created is missing the setup name (even when you set the setup name through NPS). Try setting the setup name in DSD file directly. Please refer blog &lt;A href="http://adndevblog.typepad.com/autocad/2013/10/publishing-model-views-to-a-multi-sheet-dwfpdf.html" target="_blank"&gt;http://adndevblog.typepad.com/autocad/2013/10/publishing-model-views-to-a-multi-sheet-dwfpdf.html&lt;/A&gt; . The blog sets the “Setup” value directly in the DSD file&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 05:40:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/6207919#M36837</guid>
      <dc:creator>Virupaksha_aithal</dc:creator>
      <dc:date>2016-03-10T05:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Printing pdfs from paperspace - printing autocad drawings</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/6210907#M36838</link>
      <description>&lt;P&gt;Thanks for the info. It worked the only thing is the DestinationName doesn't seem to change. Do I need to replace this too?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Dim layoutStrings() As String = Nothing
        Dim LayoutList As List(Of DrawLayoutClass) = New List(Of DrawLayoutClass)
        Dim CurLayElement As DrawLayoutClass = New DrawLayoutClass
        For x As Integer = 0 To UBound(listOfFiles)
            Using acCurDB2 As New Database(False, True)
                CurLayElement.DrawingNameWPath = listOfFiles(x)
                acCurDB2.ReadDwgFile(listOfFiles(x), FileOpenMode.OpenForReadAndAllShare, True, "")
                Dim layerStr As List(Of String) = Nothing

                Using acTrans As Transaction = acCurDB2.TransactionManager.StartTransaction
                    Dim layoutdict As DBDictionary = acTrans.GetObject(acCurDB2.LayoutDictionaryId, OpenMode.ForRead)
                    ReDim layoutStrings(layoutdict.Count - 2)
                    For Each Ent As DBDictionaryEntry In layoutdict
                        Dim desc_Txt As String = ""
                        Dim lay As Layout = acTrans.GetObject(Ent.Value, OpenMode.ForRead)
                        Dim layBTRId As ObjectId = lay.BlockTableRecordId
                        Dim btr As BlockTableRecord = TryCast(layBTRId.GetObject(OpenMode.ForRead), BlockTableRecord)
                        If LBO_Layout.Text = "All Layouts" Then
                            If (Not lay.LayoutName = "Model") Then
                                CurLayElement.Layouts.Add(lay.LayoutName)
                                CurLayElement.Title.Add(lay.LayoutName)
                            End If

                        Else
                            If StrComp(lay.LayoutName, LBO_Layout.Text, CompareMethod.Text) = 0 Then
                                CurLayElement.Layouts.Add(lay.LayoutName)
                            End If

                        End If
                    Next Ent
                    CurLayElement.Pagsetup = "BatchPageSetup"
                    CurLayElement.PageSetupDrawing = sourceStr + "\" + "BatchPlotConfig" + ".dwg"
                    LayoutList.Add(CurLayElement)
                    CurLayElement = New DrawLayoutClass
                End Using
                'acCurDB2.CloseInput(True)
            End Using
        Next x


        Using dsdDwgFiles As New DsdEntryCollection

            ' Add first drawing file
            Using dsdDwgFile1 As New DsdEntry
                For x As Integer = 0 To LayoutList.Count - 1
                    ' Set the file name and layout
                    For z = 0 To LayoutList(x).Layouts.Count - 1
                        dsdDwgFile1.DwgName = LayoutList(x).DrawingNameWPath
                        dsdDwgFile1.Layout = LayoutList(x).Layouts(z)
                        dsdDwgFile1.Title = LayoutList(x).Title(z)

                        ' Set the page setup override
                        dsdDwgFile1.Nps = LayoutList(x).Pagsetup
                        dsdDwgFile1.NpsSourceDwg = LayoutList(x).PageSetupDrawing

                        dsdDwgFiles.Add(dsdDwgFile1)
                    Next z

                Next x

            End Using



            ' Set the properties for the DSD file and then write it out
            Using dsdFileData As New DsdData

                ' Set the target information for publishing
                Dim destfile As String = Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX") + _
                    getPDFFilename(Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX")) + ".pdf"
                dsdFileData.DestinationName = destfile
                dsdFileData.ProjectPath = Autodesk.AutoCAD.ApplicationServices.Application.GetSystemVariable("DWGPREFIX") + "\"
                dsdFileData.SheetType = SheetType.MultiPdf
                If File.Exists(sourceStr + "\batchdrawings2.dsd") Then
                    File.Delete(sourceStr + "\batchdrawings2.dsd")
                End If

                ' Set the drawings that should be added to the publication
                dsdFileData.SetDsdEntryCollection(dsdDwgFiles)

                ' Set the general publishing properties
                dsdFileData.LogFilePath = Environment.GetFolderPath( _
                    Environment.SpecialFolder.MyDocuments) &amp;amp; "\myBatch.txt"

                ' Create the DSD file
                dsdFileData.WriteDsd(sourceStr + "\batchdrawings2.dsd")

                'If StrComp(Ptype, "layout", CompareMethod.Text) &amp;lt;&amp;gt; 0 Then
                'add the following line in the dsd file 
                'Setup=BatchPageSetup|C:\Users\xxx\Documents\PDFS\BatchPlotConfig.dwg
                Dim filelines As List(Of String) = New List(Of String)
                Dim sr As StreamReader = New StreamReader(sourceStr + "\batchdrawings2.dsd")
                If sr.Peek &amp;gt;= 0 Then
                    Dim tempstr As String = sr.ReadLine
                    Do While sr.Peek() &amp;gt;= 0
                        filelines.Add(tempstr)
                        tempstr = sr.ReadLine
                    Loop
                End If
                sr.Close()
                Dim sw As StreamWriter = New StreamWriter(sourceStr + "\batchdrawings2.dsd")
                For x = 0 To filelines.Count - 1
                    If StrComp(Mid(filelines(x), 1, 6), "Setup=", CompareMethod.Binary) = 0 Then
                        sw.WriteLine("Setup=" + "BatchPageSetup" + "|" + sourceStr + "\" + "BatchPlotConfig" + ".dwg")
                    Else
                        sw.WriteLine(filelines(x))
                    End If
                Next
                sw.Close()
                'End If

                Try
                    ' Publish the specified drawing files in the DSD file, and
                    ' honor the behavior of the BACKGROUNDPLOT system variable
                    Using dsdDataFile As New DsdData
                        dsdDataFile.ReadDsd(sourceStr + "\batchdrawings2.dsd")

                        ' Get the DWG to PDF.pc3 and use it as a 
                        ' device override for all the layouts
                        Dim acPlCfg As PlotConfig = _
                            PlotConfigManager.SetCurrentConfig("DWG to PDF.PC3")

                        Autodesk.AutoCAD.ApplicationServices.Application.Publisher.PublishExecute(dsdDataFile, acPlCfg)
                    End Using

                Catch es As Autodesk.AutoCAD.Runtime.Exception
                    MsgBox(es.Message)
                End Try
            End Using
        End Using&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Mar 2016 13:16:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/6210907#M36838</guid>
      <dc:creator>GeeHaa</dc:creator>
      <dc:date>2016-03-11T13:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Printing pdfs from paperspace - printing autocad drawings</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/7170534#M36839</link>
      <description>&lt;P&gt;&lt;SPAN&gt;In your example what does this line of code do?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;entry.Nps = String.Format(&lt;/SPAN&gt;&lt;SPAN&gt;"{0}{1}"&lt;/SPAN&gt;&lt;SPAN&gt;, viewName, &lt;/SPAN&gt;&lt;SPAN&gt;"PS"&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;what is "{0}{1}" mean?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;what is "PS" mean?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;J.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2017 11:44:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/7170534#M36839</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-22T11:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Printing pdfs from paperspace - printing autocad drawings</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/7170907#M36840</link>
      <description>&lt;P&gt;&lt;A href="https://msdn.microsoft.com/en-us/library/system.string.format(v=vs.110).aspx" target="_blank"&gt;https://msdn.microsoft.com/en-us/library/system.string.format(v=vs.110).aspx&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2017 13:46:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/7170907#M36840</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2017-06-22T13:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Batch Printing pdfs from paperspace - printing autocad drawings</title>
      <link>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/7171209#M36841</link>
      <description>&lt;P&gt;Thanks for the reply, I still don't understand what Nps is looking for and what Nps is doing with it's value&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;looking at the Dsd file I see a Setup= line that is blank. I am assuming that Nps fills in a portion of this value&lt;/P&gt;
&lt;P&gt;Setup= {Nps} | {&lt;SPAN&gt;NpsSourceDwg}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;am I way off?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks Again&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;J.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2017 15:04:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/batch-printing-pdfs-from-paperspace-printing-autocad-drawings/m-p/7171209#M36841</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-06-22T15:04:47Z</dc:date>
    </item>
  </channel>
</rss>

