Layout page setup

snappyjazz
Collaborator

Layout page setup

snappyjazz
Collaborator
Collaborator

Hello,

I'm creating a button event that creates a new layout, updates the page setup, and inserts our titleblock. The last two items aren't working, but one step at a time. While attempting to adjust the page setup I can adjust some, but not all of the settings. I can change the: plot configuration\media size and plot style. This does make changes to the layout, but the size of the layout is small (See screenshot below). Once I manually set the plot area to layout, the layout size adjusts correctly (see second screen shot). For some reason I haven't figured out how to change that setting in the plot setting validator (See code below). Is there a difference between a print setup and page setup?

 

snappyjazz_0-1679588434356.png

 

snappyjazz_1-1679588447832.png

#Region " Emp_NewLayoutC"
    <CadRun.CommandMethod("Emp_NewLayoutC")>
    Public Sub Emp_NewLayoutC()
        ' Layouts are sorted by taborder during the globals.GetLayouts sub during initiate
        Initiate()
        DB.WriteLine(vbNewLine & "Class1 | ServiceCommands | Emp_NewLayoutC")

        'Try
        ' Start transaction
        Dim Trans As CadDBS.Transaction = g_AcDatBas.TransactionManager.StartTransaction()

            ' Get the layout manager
            Dim LayoutMgr As CadDBS.LayoutManager = CadDBS.LayoutManager.Current

            ' Create the new layout with default settings
            Dim ObjID As CadDBS.ObjectId = LayoutMgr.CreateLayout($"Layout{g_Layouts.Count + 1}")

            ' Open the Layout
            Dim Layt As CadDBS.Layout = Trans.GetObject(ObjID, CadDBS.OpenMode.ForRead)

            ' Set the layout current if it is not already
            If Layt.TabSelected = False Then : LayoutMgr.CurrentLayout = Layt.LayoutName : End If

        Dim SN As New PlotStyle
        Dim PlSet As CadDBS.PlotSettings = New CadDBS.PlotSettings(False)
        'PlSet.PlotSettingsName = "None"

        Dim Vldtr As CadDBS.PlotSettingsValidator = CadDBS.PlotSettingsValidator.Current
        Vldtr.RefreshLists(PlSet)

        Vldtr.SetPlotConfigurationName(PlSet, "None", "ANSI_C_(17.00_x_22.00_Inches)") ' "ANSI_C_(22.00_x_17.00_Inches)"
        Vldtr.SetUseStandardScale(PlSet, True)
        Vldtr.SetStdScaleType(PlSet, CadDBS.StdScaleType.StdScale1To1)
        Vldtr.SetPlotType(PlSet, CadDBS.PlotType.Extents)
        Vldtr.SetPlotType(PlSet, CadDBS.PlotType.Layout)
        'Vldtr.SetPlotCentered(PlSet, True)
        Vldtr.SetPlotPaperUnits(PlSet, CadDBS.PlotPaperUnit.Inches)
        'PlSet.ShowPlotStyles = True
        'Vldtr.SetPlotRotation(PlSet, CadDBS.PlotRotation.Degrees000)
        Vldtr.SetCurrentStyleSheet(PlSet, SN.Monochrome.ToString)

        'Vldtr.SetPlotWindowArea(PlSet, Layt.Limits)
        Vldtr.SetZoomToPaperOnUpdate(PlSet, True)

        Layt.CopyFrom(PlSet)
        DB.WriteLine("..." & vbTab & "set print settings")

            ' Save the new object to the database
            Trans.Commit()
            DB.WriteLine(vbNewLine)
        'Catch ex As Exception
        '    Return
        'End Try
    End Sub

#End Region
0 Likes
Reply
Accepted solutions (1)
926 Views
7 Replies
Replies (7)

Ed__Jobe
Mentor
Mentor

Instead of creating a page setup each time, I just import them from a template. But I found that you need to do a regen to make the changes show up.

 

You could also use the CopyFrom method to clone a layout from a template. One advantage of importing from a template is that if something changes, you can update your template instead of changing code and redeploying your app.

Ed


Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
How to post your code.

EESignature

snappyjazz
Collaborator
Collaborator

@Ed__Jobe I'm not familiar with importing settings from a template or cloning a template using the copy from method; but I like the idea that if I change something I can just change the template and leave the code alone. So I created a template where the layout1 page setup is how I want it. I also inserted the titleblock on top of that. The code below will import the template page setup but it doesn't bring the title block with it (see screenshot below). What am I missing?

 

#Region " Emp_NewLayoutC"
    <CadRun.CommandMethod("Emp_NewLayoutC")>
    Public Sub Emp_NewLayoutC()
        ' Layouts are sorted by taborder during the globals.GetLayouts sub during initiate
        Initiate()
        DB.WriteLine(vbNewLine & "Class1 | ServiceCommands | Emp_NewLayoutC")

        'Try
        ' Start transaction
        Dim Trans As CadDBS.Transaction = g_AcDatBas.TransactionManager.StartTransaction()

            ' Get the layout manager
            Dim LayoutMgr As CadDBS.LayoutManager = CadDBS.LayoutManager.Current

            ' Create the new layout with default settings
            Dim ObjID As CadDBS.ObjectId = LayoutMgr.CreateLayout($"Layout{g_Layouts.Count + 1}")

            ' Open the Layout
            Dim Layt As CadDBS.Layout = Trans.GetObject(ObjID, CadDBS.OpenMode.ForRead)

            ' Set the layout current if it is not already
            If Layt.TabSelected = False Then : LayoutMgr.CurrentLayout = Layt.LayoutName : End If

        ' Open in memory the titleblock dwg
        Dim NewDb As CadDBS.Database = New CadDBS.Database(False, True)
        NewDb.ReadDwgFile("TitleBlock_Full_Filename.dwt", CadDBS.FileOpenMode.OpenForReadAndAllShare, False, Nothing)
        NewDb.CloseInput(True)
        DB.WriteLine("..." & vbTab & $"Open titleblock dwt: {System.IO.Path.GetFileNameWithoutExtension(NewDb.Filename)}" & vbNewLine)

        ' Start a new Transaction
        Dim NewTrans As CadDBS.Transaction = NewDb.TransactionManager.StartTransaction

        ' Get the layout from the template
        Dim TempLayout As CadDBS.Layout
        For Each entry As CadDBS.DBDictionaryEntry In CType(NewDb.LayoutDictionaryId.GetObject(CadDBS.OpenMode.ForRead), CadDBS.DBDictionary)
            If entry.Key.Trim().ToUpper() <> "MODEL" Then
                TempLayout = CType(NewTrans.GetObject(entry.Value, CadDBS.OpenMode.ForRead), CadDBS.Layout)
            End If
        Next
        NewTrans.Commit()

        Layt.CopyFrom(TempLayout)
        '' Insert the title block
        'Dim TitlID As CadDBS.ObjectId = g_AcDatBas.Insert(System.IO.Path.GetFileNameWithoutExtension(NewDb.Filename), NewDb, False)
        'DB.WriteLine("..." & vbTab & "Insert titleblock dwg")


        ' Regenerate the document
        g_AcDoc.Editor.Regen()

        ' Save the new object to the database
        Trans.Commit()
            DB.WriteLine(vbNewLine)
        'Catch ex As Exception
        '    Return
        'End Try
    End Sub

#End Region

 

 

snappyjazz_0-1679603813678.png

 

0 Likes

kerry_w_brown
Advisor
Advisor

@snappyjazz 

just a guess . . 

Where is the template located ?

What is the setting in your Config->Files->Template Settings->Drawing Template File Location ?

Try either giving the full path in your code or locate the template file in the 'Drawing Template File Location'  folder.

 

Regards,


// Called Kerry or kdub in my other life.

Everything will work just as you expect it to, unless your expectations are incorrect. ~ kdub
Sometimes the question is more important than the answer. ~ kdub

NZST UTC+12

class keyThumper<T> : Lazy<T>;      another  Swamper

snappyjazz
Collaborator
Collaborator

@kerry_w_brown Good thinking. I definitely didn't have my new templates in the directory set in the options. I moved the new templates to that directory and ran it again. Unfortunately I got the same result, the layout page setup came across but not the titleblock.

 

PS. I found ".clone" a method for Layout. I'm looking to see if that will help.

0 Likes

BlackBox_
Advisor
Advisor

@snappyjazz - 

 

Once you import the named Page Setup into the active document, the code under this old LispFunction might help you set it as active to the desired Layouts: 

 

https://forums.augi.com/showthread.php?80461-Page-Setup-Manager&p=1219546&viewfull=1#post1219546

 

Cheers



"How we think determines what we do, and what we do determines what we get."

Ed__Jobe
Mentor
Mentor
Accepted solution

@snappyjazz  Remember that a Layout object also has a Block object that contains the objects on a Layout. After you import the layout, you can check the block table for the block contents and copy it to the new layout's block. Use the Layout.BlockTableRecordID method to locate the btr.

 

The Layout.DeepClone method may do this for you. I haven't tried it.

 

I also found this old thread that imports a layout. Maybe it will help.

Ed


Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
How to post your code.

EESignature

0 Likes

snappyjazz
Collaborator
Collaborator

@Ed__Jobe – That worked. It was  a little confusing for a reason that’s obvious now. In my template file I created the layout with page setup and titleblock on the first layout “Layout1”. When running the code, I always used a new blank dwg to test with. The code would create a 2nd layout “Layout2”, but the template would always appear on the 1st layout: “Layout1”. Duh because is cloning “Layout1” from the template file. HAHA, so I renamed the layout in the template “TempLayoutC” which no one should use in their project dwgs. Then I added a line of code at the end to rename “TempLayoutC” to “Layout{Layout.Count}” Final code result is below. 

 

PS - thanks to everyone who helped sort out this confusion!

 

 

 

#Region " Emp_NewLayoutC"
    <CadRun.CommandMethod("Emp_NewLayoutC")>
    Public Sub Emp_NewLayoutC()
        ' Layouts are sorted by taborder during the globals.GetLayouts sub during initiate
        ' Target is referenced to the dwg I'm currently working and want to add a new layout to - Any globals "g_" assume this too
        ' Temp/Template is referenced to,  the layout of, or anything else pertaining to the template
        Initiate()
        'DB.WriteLine(vbNewLine & "Class1 | ServiceCommands | Emp_NewLayoutC")

        Try
            ' Start transaction
            Dim TargetTrans As CadDBS.Transaction = g_AcDatBas.TransactionManager.StartTransaction()

            ' Get the layout manager
            Dim TargetLayoutMgr As CadDBS.LayoutManager = CadDBS.LayoutManager.Current

        ' Open in memory the titleblock dwt (Make sure this is in templates dir from options!)
        Dim TempDb As CadDBS.Database = New CadDBS.Database(False, False)
        TempDb.ReadDwgFile("TempFileName", CadDBS.FileOpenMode.OpenForReadAndAllShare, False, Nothing)

        ' Start a new Transaction
        Dim TempTrans As CadDBS.Transaction = TempDb.TransactionManager.StartTransaction

        ' Get the layout from the template
        Dim TempLayout As CadDBS.Layout
        For Each entry As CadDBS.DBDictionaryEntry In CType(TempDb.LayoutDictionaryId.GetObject(CadDBS.OpenMode.ForRead), CadDBS.DBDictionary)
            If entry.Key.Trim().ToUpper() <> "MODEL" Then
                TempLayout = CType(TempTrans.GetObject(entry.Value, CadDBS.OpenMode.ForRead), CadDBS.Layout)
            End If
        Next

        If TempLayout.ObjectId <> CadDBS.ObjectId.Null Then
            ' Create an id collection for the clone and add the layout
            Dim OIC As New CadDBS.ObjectIdCollection
            OIC.Add(TempLayout.ObjectId)

            ' Create id mapping
            Dim IdMap As CadDBS.IdMapping = New CadDBS.IdMapping

            ' get the target database dict
            Dim DbDict As CadDBS.DBDictionary = DirectCast(TempTrans.GetObject(g_AcDatBas.LayoutDictionaryId, CadDBS.OpenMode.ForRead, False, False), CadDBS.DBDictionary)

            ' If dict is open as ForRead, upgrade it to ForWrite. This also closes the object.
            DbDict.UpgradeOpen()

            ' Target database clones from the template id collection
            g_AcDatBas.WblockCloneObjects(OIC, g_AcDatBas.LayoutDictionaryId, IdMap, CadDBS.DuplicateRecordCloning.UnmangleName, False)

            ' Deep clone id pairs based on the mapping
            Dim IPair As CadDBS.IdPair = IdMap.Lookup(TempLayout.ObjectId)

            ' Pair value is the cloned objects id
            Dim NewObjId As CadDBS.ObjectId = IPair.Value

            'LayoutMgr.CurrentLayout = Layt.LayoutName
            DbDict.DecomposeForSave(CadDBS.DwgVersion.Current)

            ' Open the Layout
            Dim Layt As CadDBS.Layout = TempTrans.GetObject(NewObjId, CadDBS.OpenMode.ForWrite)

            ' Move to the end of the tabs
            Layt.TabOrder = TargetLayoutMgr.LayoutCount

            ' Add to the global list
            g_Layouts.Add(Layt)

            ' Set the layout current if it is not already
            If Layt.TabSelected = False Then : TargetLayoutMgr.CurrentLayout = Layt.LayoutName : End If

            ' Rename the tab
            Layt.LayoutName = $"Layout{g_Layouts.Count}"
        End If

        ' Save stuff from the template transaction
        TempTrans.Commit()

        ' Regenerate the document
        g_AcDoc.Editor.Regen()

        ' Save stuff from the target transaction
        TargetTrans.Commit()

        DB.WriteLine(vbNewLine)
        Catch ex As Exception
        Return
        End Try
    End Sub

#End Region

 

**Moderator edit: changed code window format to C#

Type a product name

______
icon-svg-close-thick

Cookie preferences

Your privacy is important to us and so is an optimal experience. To help us customize information and build applications, we collect data about your use of this site.

May we collect and use your data?

Learn more about the Third Party Services we use and our Privacy Statement.

Strictly necessary – required for our site to work and to provide services to you

These cookies allow us to record your preferences or login information, respond to your requests or fulfill items in your shopping cart.

Improve your experience – allows us to show you what is relevant to you

These cookies enable us to provide enhanced functionality and personalization. They may be set by us or by third party providers whose services we use to deliver information and experiences tailored to you. If you do not allow these cookies, some or all of these services may not be available for you.

Customize your advertising – permits us to offer targeted advertising to you

These cookies collect data about you based on your activities and interests in order to show you relevant ads and to track effectiveness. By collecting this data, the ads you see will be more tailored to your interests. If you do not allow these cookies, you will experience less targeted advertising.

icon-svg-close-thick

THIRD PARTY SERVICES

Learn more about the Third-Party Services we use in each category, and how we use the data we collect from you online.

icon-svg-hide-thick

icon-svg-show-thick

Strictly necessary – required for our site to work and to provide services to you

Qualtrics
We use Qualtrics to let you give us feedback via surveys or online forms. You may be randomly selected to participate in a survey, or you can actively decide to give us feedback. We collect data to better understand what actions you took before filling out a survey. This helps us troubleshoot issues you may have experienced. Qualtrics Privacy Policy
Akamai mPulse
We use Akamai mPulse to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Akamai mPulse Privacy Policy
Digital River
We use Digital River to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Digital River Privacy Policy
Dynatrace
We use Dynatrace to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Dynatrace Privacy Policy
Khoros
We use Khoros to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Khoros Privacy Policy
Launch Darkly
We use Launch Darkly to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Launch Darkly Privacy Policy
New Relic
We use New Relic to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. New Relic Privacy Policy
Salesforce Live Agent
We use Salesforce Live Agent to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Salesforce Live Agent Privacy Policy
Wistia
We use Wistia to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Wistia Privacy Policy
Tealium
We use Tealium to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Tealium Privacy Policy
Upsellit
We use Upsellit to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Upsellit Privacy Policy
CJ Affiliates
We use CJ Affiliates to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. CJ Affiliates Privacy Policy
Commission Factory
We use Commission Factory to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Commission Factory Privacy Policy
Google Analytics (Strictly Necessary)
We use Google Analytics (Strictly Necessary) to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Google Analytics (Strictly Necessary) Privacy Policy
Typepad Stats
We use Typepad Stats to collect data about your behaviour on our sites. This may include pages you’ve visited. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our platform to provide the most relevant content. This allows us to enhance your overall user experience. Typepad Stats Privacy Policy
Geo Targetly
We use Geo Targetly to direct website visitors to the most appropriate web page and/or serve tailored content based on their location. Geo Targetly uses the IP address of a website visitor to determine the approximate location of the visitor’s device. This helps ensure that the visitor views content in their (most likely) local language.Geo Targetly Privacy Policy
SpeedCurve
We use SpeedCurve to monitor and measure the performance of your website experience by measuring web page load times as well as the responsiveness of subsequent elements such as images, scripts, and text.SpeedCurve Privacy Policy
Qualified
Qualified is the Autodesk Live Chat agent platform. This platform provides services to allow our customers to communicate in real-time with Autodesk support. We may collect unique ID for specific browser sessions during a chat. Qualified Privacy Policy

icon-svg-hide-thick

icon-svg-show-thick

Improve your experience – allows us to show you what is relevant to you

Google Optimize
We use Google Optimize to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Google Optimize Privacy Policy
ClickTale
We use ClickTale to better understand where you may encounter difficulties with our sites. We use session recording to help us see how you interact with our sites, including any elements on our pages. Your Personally Identifiable Information is masked and is not collected. ClickTale Privacy Policy
OneSignal
We use OneSignal to deploy digital advertising on sites supported by OneSignal. Ads are based on both OneSignal data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that OneSignal has collected from you. We use the data that we provide to OneSignal to better customize your digital advertising experience and present you with more relevant ads. OneSignal Privacy Policy
Optimizely
We use Optimizely to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Optimizely Privacy Policy
Amplitude
We use Amplitude to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Amplitude Privacy Policy
Snowplow
We use Snowplow to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Snowplow Privacy Policy
UserVoice
We use UserVoice to collect data about your behaviour on our sites. This may include pages you’ve visited. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our platform to provide the most relevant content. This allows us to enhance your overall user experience. UserVoice Privacy Policy
Clearbit
Clearbit allows real-time data enrichment to provide a personalized and relevant experience to our customers. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID.Clearbit Privacy Policy
YouTube
YouTube is a video sharing platform which allows users to view and share embedded videos on our websites. YouTube provides viewership metrics on video performance. YouTube Privacy Policy

icon-svg-hide-thick

icon-svg-show-thick

Customize your advertising – permits us to offer targeted advertising to you

Adobe Analytics
We use Adobe Analytics to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Adobe Analytics Privacy Policy
Google Analytics (Web Analytics)
We use Google Analytics (Web Analytics) to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Google Analytics (Web Analytics) Privacy Policy
AdWords
We use AdWords to deploy digital advertising on sites supported by AdWords. Ads are based on both AdWords data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that AdWords has collected from you. We use the data that we provide to AdWords to better customize your digital advertising experience and present you with more relevant ads. AdWords Privacy Policy
Marketo
We use Marketo to send you more timely and relevant email content. To do this, we collect data about your online behavior and your interaction with the emails we send. Data collected may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, email open rates, links clicked, and others. We may combine this data with data collected from other sources to offer you improved sales or customer service experiences, as well as more relevant content based on advanced analytics processing. Marketo Privacy Policy
Doubleclick
We use Doubleclick to deploy digital advertising on sites supported by Doubleclick. Ads are based on both Doubleclick data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Doubleclick has collected from you. We use the data that we provide to Doubleclick to better customize your digital advertising experience and present you with more relevant ads. Doubleclick Privacy Policy
HubSpot
We use HubSpot to send you more timely and relevant email content. To do this, we collect data about your online behavior and your interaction with the emails we send. Data collected may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, email open rates, links clicked, and others. HubSpot Privacy Policy
Twitter
We use Twitter to deploy digital advertising on sites supported by Twitter. Ads are based on both Twitter data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Twitter has collected from you. We use the data that we provide to Twitter to better customize your digital advertising experience and present you with more relevant ads. Twitter Privacy Policy
Facebook
We use Facebook to deploy digital advertising on sites supported by Facebook. Ads are based on both Facebook data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Facebook has collected from you. We use the data that we provide to Facebook to better customize your digital advertising experience and present you with more relevant ads. Facebook Privacy Policy
LinkedIn
We use LinkedIn to deploy digital advertising on sites supported by LinkedIn. Ads are based on both LinkedIn data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that LinkedIn has collected from you. We use the data that we provide to LinkedIn to better customize your digital advertising experience and present you with more relevant ads. LinkedIn Privacy Policy
Yahoo! Japan
We use Yahoo! Japan to deploy digital advertising on sites supported by Yahoo! Japan. Ads are based on both Yahoo! Japan data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Yahoo! Japan has collected from you. We use the data that we provide to Yahoo! Japan to better customize your digital advertising experience and present you with more relevant ads. Yahoo! Japan Privacy Policy
Naver
We use Naver to deploy digital advertising on sites supported by Naver. Ads are based on both Naver data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Naver has collected from you. We use the data that we provide to Naver to better customize your digital advertising experience and present you with more relevant ads. Naver Privacy Policy
Quantcast
We use Quantcast to deploy digital advertising on sites supported by Quantcast. Ads are based on both Quantcast data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Quantcast has collected from you. We use the data that we provide to Quantcast to better customize your digital advertising experience and present you with more relevant ads. Quantcast Privacy Policy
Call Tracking
We use Call Tracking to provide customized phone numbers for our campaigns. This gives you faster access to our agents and helps us more accurately evaluate our performance. We may collect data about your behavior on our sites based on the phone number provided. Call Tracking Privacy Policy
Wunderkind
We use Wunderkind to deploy digital advertising on sites supported by Wunderkind. Ads are based on both Wunderkind data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Wunderkind has collected from you. We use the data that we provide to Wunderkind to better customize your digital advertising experience and present you with more relevant ads. Wunderkind Privacy Policy
ADC Media
We use ADC Media to deploy digital advertising on sites supported by ADC Media. Ads are based on both ADC Media data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that ADC Media has collected from you. We use the data that we provide to ADC Media to better customize your digital advertising experience and present you with more relevant ads. ADC Media Privacy Policy
AgrantSEM
We use AgrantSEM to deploy digital advertising on sites supported by AgrantSEM. Ads are based on both AgrantSEM data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that AgrantSEM has collected from you. We use the data that we provide to AgrantSEM to better customize your digital advertising experience and present you with more relevant ads. AgrantSEM Privacy Policy
Bidtellect
We use Bidtellect to deploy digital advertising on sites supported by Bidtellect. Ads are based on both Bidtellect data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Bidtellect has collected from you. We use the data that we provide to Bidtellect to better customize your digital advertising experience and present you with more relevant ads. Bidtellect Privacy Policy
Bing
We use Bing to deploy digital advertising on sites supported by Bing. Ads are based on both Bing data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Bing has collected from you. We use the data that we provide to Bing to better customize your digital advertising experience and present you with more relevant ads. Bing Privacy Policy
G2Crowd
We use G2Crowd to deploy digital advertising on sites supported by G2Crowd. Ads are based on both G2Crowd data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that G2Crowd has collected from you. We use the data that we provide to G2Crowd to better customize your digital advertising experience and present you with more relevant ads. G2Crowd Privacy Policy
NMPI Display
We use NMPI Display to deploy digital advertising on sites supported by NMPI Display. Ads are based on both NMPI Display data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that NMPI Display has collected from you. We use the data that we provide to NMPI Display to better customize your digital advertising experience and present you with more relevant ads. NMPI Display Privacy Policy
VK
We use VK to deploy digital advertising on sites supported by VK. Ads are based on both VK data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that VK has collected from you. We use the data that we provide to VK to better customize your digital advertising experience and present you with more relevant ads. VK Privacy Policy
Adobe Target
We use Adobe Target to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Adobe Target Privacy Policy
Google Analytics (Advertising)
We use Google Analytics (Advertising) to deploy digital advertising on sites supported by Google Analytics (Advertising). Ads are based on both Google Analytics (Advertising) data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Google Analytics (Advertising) has collected from you. We use the data that we provide to Google Analytics (Advertising) to better customize your digital advertising experience and present you with more relevant ads. Google Analytics (Advertising) Privacy Policy
Trendkite
We use Trendkite to deploy digital advertising on sites supported by Trendkite. Ads are based on both Trendkite data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Trendkite has collected from you. We use the data that we provide to Trendkite to better customize your digital advertising experience and present you with more relevant ads. Trendkite Privacy Policy
Hotjar
We use Hotjar to deploy digital advertising on sites supported by Hotjar. Ads are based on both Hotjar data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Hotjar has collected from you. We use the data that we provide to Hotjar to better customize your digital advertising experience and present you with more relevant ads. Hotjar Privacy Policy
6 Sense
We use 6 Sense to deploy digital advertising on sites supported by 6 Sense. Ads are based on both 6 Sense data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that 6 Sense has collected from you. We use the data that we provide to 6 Sense to better customize your digital advertising experience and present you with more relevant ads. 6 Sense Privacy Policy
Terminus
We use Terminus to deploy digital advertising on sites supported by Terminus. Ads are based on both Terminus data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Terminus has collected from you. We use the data that we provide to Terminus to better customize your digital advertising experience and present you with more relevant ads. Terminus Privacy Policy
StackAdapt
We use StackAdapt to deploy digital advertising on sites supported by StackAdapt. Ads are based on both StackAdapt data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that StackAdapt has collected from you. We use the data that we provide to StackAdapt to better customize your digital advertising experience and present you with more relevant ads. StackAdapt Privacy Policy
The Trade Desk
We use The Trade Desk to deploy digital advertising on sites supported by The Trade Desk. Ads are based on both The Trade Desk data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that The Trade Desk has collected from you. We use the data that we provide to The Trade Desk to better customize your digital advertising experience and present you with more relevant ads. The Trade Desk Privacy Policy
RollWorks
We use RollWorks to deploy digital advertising on sites supported by RollWorks. Ads are based on both RollWorks data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that RollWorks has collected from you. We use the data that we provide to RollWorks to better customize your digital advertising experience and present you with more relevant ads. RollWorks Privacy Policy

Are you sure you want a less customized experience?

We can access your data only if you select "yes" for the categories on the previous screen. This lets us tailor our marketing so that it's more relevant for you. You can change your settings at any time by visiting our privacy statement

Your experience. Your choice.

We care about your privacy. The data we collect helps us understand how you use our products, what information you might be interested in, and what we can improve to make your engagement with Autodesk more rewarding.

May we collect and use your data to tailor your experience?

Explore the benefits of a customized experience by managing your privacy settings for this site or visit our Privacy Statement to learn more about your options.