GoToLayout

Short description

📑 GoToLayout is an AutoCAD and Civil 3D AutoLISP navigation utility for quickly switching to layout tabs through a filtered DCL dialog.
🔍 It supports wildcard layout searches, preview switching while browsing, Previous and Next navigation, and cancel-safe restoration of the original tab.

Command:

🚀 Main command: GoToLayout
🧰 Load the LSP file with APPLOAD, then run the command from the AutoCAD command line.

Description:

📑 GoToLayout is an SEO-friendly AutoCAD layout navigation tool for drawings with many paper-space tabs.
🔍 The routine dynamically creates a Go To Layout DCL dialog with a wildcard layout-name filter, a match counter, a list of matching tabs, and Previous and Next buttons.
👁️ The Preview switch can update CTAB while the user browses the results, making it easier to visually inspect layout tabs before choosing the final destination.
🧠 The last used filter pattern is remembered across command runs through the global variable *gtl:lastpat*.
🛡️ If the dialog is cancelled, the routine restores the original layout tab so accidental browsing does not leave the drawing on the wrong sheet.
📌 This is useful for Civil 3D plan sets, DWG files with many layouts, sheet navigation, plotting preparation, and layout quality-control checks.

Helper function: (if any)​

🧩 _gtl:temp-dcl-path creates a unique temporary DCL file path for each run.
🧩 _gtl:write-dcl writes the Go To Layout dialog definition at runtime.
🧩 _gtl:layouts-raw collects Model plus all layout names for browsing.
🧩 _gtl:sort-ci sorts layout names case-insensitively.
🧩 _gtl:filter-layouts applies wildcard filtering to layout names.
🧩 _gtl:fill-list repopulates the DCL list box.
🧩 gtl:update rebuilds the matches list, updates the counter, and manages OK and navigation button states.
🧩 gtl:on-list, gtl:prev, and gtl:next handle direct selection and cyclic navigation.
🧩 gtl:_set-ctab-if-preview switches the active tab when preview mode is enabled.

Functionalities:

✅ Open a compact DCL dialog for fast layout-tab navigation.
✅ Filter layout names with wildcard patterns using * and ?.
✅ Include Model together with paper-space layouts in the searchable list.
✅ Sort matched layouts case-insensitively.
✅ Preview matched tabs by switching CTAB while browsing.
✅ Move through filtered matches with Previous and Next buttons.
✅ Confirm a layout with OK and switch to it.
✅ Restore the original CTAB when the user cancels the dialog.
✅ Remember the last search pattern for repeated use.

Result:

🎯 The result is faster navigation through drawings with many layout tabs.
📑 Users can search for layout names, preview tabs, and jump directly to the needed sheet without manually scrolling along the layout tab bar.
✅ GoToLayout improves production navigation, sheet review, plotting preparation, and quality-control workflows in AutoCAD and Civil 3D drawings.

Images, animations etc.

Pixel

XAML code:

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:src="clr-namespace:Autodesk.Windows;assembly=AdWindows">
    
<src:RibbonToolTip x:Key="GoToLayout">
<src:RibbonToolTip.ExpandedContent>
<StackPanel>
<TextBlock Background="AntiqueWhite" TextAlignment="Left">
<Bold>Function Syntax: GoToLayout</Bold>
<LineBreak/>
<Bold>Version: 1.1 Date: 20.06.2026 6:38:55PM</Bold>
<LineBreak/>
<Hyperlink>AI+https://forums.augi.com/showthread.php?69541-A-way-to-select-a-layout-tab-with-a-lisp</Hyperlink>
<LineBreak/>
<Bold>Summary</Bold><LineBreak/>
This program provides an interactive way to find and switch to drawing layouts using wildcard filters, through a temporary DCL dialog generated at runtime.<LineBreak/>

<Bold>How the user runs it</Bold><LineBreak/>
Type <Run Foreground="DarkRed"><Bold>GOTOLAYOUT</Bold></Run> at the AutoCAD command line to open the dialog.<LineBreak/>

<Bold>What the user does in the dialog</Bold><LineBreak/>
• Enter a layout name filter using wildcards <Run Foreground="DarkRed"><Bold></Bold></Run> and <Run Foreground="DarkRed"><Bold>?</Bold></Run> (example: <Run Foreground="DarkRed">A</Run>, <Run Foreground="DarkRed">SHEET??</Run>).<LineBreak/>
• Review matching layouts in a list (the list includes <Run Foreground="DarkRed"><Bold>Model</Bold></Run>).<LineBreak/>
• Optionally enable <Run Foreground="DarkRed"><Bold>Preview switch while browsing</Bold></Run> to switch tabs as you move through the list.<LineBreak/>
• Use <Run Foreground="DarkRed"><Bold>Next</Bold></Run> and <Run Foreground="DarkRed"><Bold>Prev</Bold></Run> to cycle through matches (wrap-around navigation).<LineBreak/>
• Click <Run Foreground="DarkRed"><Bold>OK</Bold></Run> to commit the selected layout, or <Run Foreground="DarkRed"><Bold>Cancel</Bold></Run> to revert to the original tab.<LineBreak/>

<Bold>Functionalities</Bold><LineBreak/>
• Filters layouts using wildcard matching via <Run Foreground="DarkRed"><Bold>wcmatch</Bold></Run> with <Run Foreground="DarkRed"><Bold>*</Bold></Run> and <Run Foreground="DarkRed"><Bold>?</Bold></Run> patterns.<LineBreak/>
• Preserves original layout name casing for display and for switching tabs (no forced uppercase for the actual layout names).<LineBreak/>
• Sorts matching results alphabetically in a case-insensitive manner for predictable browsing.<LineBreak/>
• Disables <Run Foreground="DarkRed"><Bold>OK</Bold></Run> and disables navigation when there are zero matches, preventing invalid layout switches.<LineBreak/>
• Remembers the last used filter pattern (it reappears the next time you run the command).<LineBreak/>
• Supports optional live switching using <Run Foreground="DarkRed"><Bold>Preview</Bold></Run>, so users can visually confirm they are on the intended sheet before committing.<LineBreak/>

<Bold>Important behaviors to recognize</Bold><LineBreak/>
• The active tab is changed by setting <Run Foreground="DarkRed"><Bold>CTAB</Bold></Run> to the selected layout name.<LineBreak/>
• If the user cancels, the program restores the original <Run Foreground="DarkRed"><Bold>CTAB</Bold></Run> (even if preview switching was used).<LineBreak/>
• If the filter is empty, it is treated as <Run Foreground="DarkRed"><Bold>*</Bold></Run> (meaning all layouts match).<LineBreak/>

<Bold>Temporary files and cleanup</Bold><LineBreak/>
• The dialog is created by writing a temporary <Run Foreground="DarkRed"><Bold>.dcl</Bold></Run> file with a unique name each run (generated with <Run Foreground="DarkRed"><Bold>vl-filename-mktemp</Bold></Run>).<LineBreak/>
• The temporary <Run Foreground="DarkRed"><Bold>.dcl</Bold></Run> file is deleted after the dialog closes, whether the user clicks OK or Cancel.<LineBreak/>


<Bold><Run Foreground="DodgerBlue">Description</Run></Bold><LineBreak/>
<Run Foreground="White">📑 GoToLayout is an AutoCAD and Civil 3D AutoLISP navigation utility for quickly switching to layout tabs through a filtered DCL dialog.</Run><LineBreak/>
<Run Foreground="White">🔍 It supports wildcard layout searches, preview switching while browsing, Previous and Next navigation, and cancel-safe restoration of the original tab.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DodgerBlue">Function Syntax</Run></Bold><LineBreak/>
<Run Foreground="White">🚀 Main dialog command: </Run><Bold><Run Foreground="Orange">GoToLayout</Run></Bold><LineBreak/>
<Run Foreground="White">🧰 Load the LSP with APPLOAD and run the command in AutoCAD or Civil 3D.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DodgerBlue">SEO Optimized Overview</Run></Bold><LineBreak/>
<Run Foreground="White">📑 GoToLayout is an SEO-friendly AutoCAD layout navigation tool for drawings with many paper-space tabs.</Run><LineBreak/>
<Run Foreground="White">🔍 The routine dynamically creates a Go To Layout DCL dialog with a wildcard layout-name filter, a match counter, a list of matching tabs, and Previous and Next buttons.</Run><LineBreak/>
<Run Foreground="White">👁️ The Preview switch can update CTAB while the user browses the results, making it easier to visually inspect layout tabs before choosing the final destination.</Run><LineBreak/>
<Run Foreground="White">🧠 The last used filter pattern is remembered across command runs through the global variable *gtl:lastpat*.</Run><LineBreak/>
<Run Foreground="White">🛡️ If the dialog is cancelled, the routine restores the original layout tab so accidental browsing does not leave the drawing on the wrong sheet.</Run><LineBreak/>
<Run Foreground="White">📌 This is useful for Civil 3D plan sets, DWG files with many layouts, sheet navigation, plotting preparation, and layout quality-control checks.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="LimeGreen">Primary Workflow</Run></Bold><LineBreak/>
<Run Foreground="White">1️⃣ Load GoToLayout into AutoCAD or Civil 3D with APPLOAD.</Run><LineBreak/>
<Run Foreground="White">2️⃣ Run GoToLayout from the command line.</Run><LineBreak/>
<Run Foreground="White">3️⃣ Use the dialog or command prompts to select the target layouts, layers, viewports, or plot settings.</Run><LineBreak/>
<Run Foreground="White">4️⃣ Review the preview, status list, or command-line feedback before applying changes.</Run><LineBreak/>
<Run Foreground="White">5️⃣ Apply the operation and verify the result in the active drawing.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DodgerBlue">Main Functionalities</Run></Bold><LineBreak/>
<Run Foreground="White">✅ Open a compact DCL dialog for fast layout-tab navigation.</Run><LineBreak/>
<Run Foreground="White">✅ Filter layout names with wildcard patterns using * and ?.</Run><LineBreak/>
<Run Foreground="White">✅ Include Model together with paper-space layouts in the searchable list.</Run><LineBreak/>
<Run Foreground="White">✅ Sort matched layouts case-insensitively.</Run><LineBreak/>
<Run Foreground="White">✅ Preview matched tabs by switching CTAB while browsing.</Run><LineBreak/>
<Run Foreground="White">✅ Move through filtered matches with Previous and Next buttons.</Run><LineBreak/>
<Run Foreground="White">✅ Confirm a layout with OK and switch to it.</Run><LineBreak/>
<Run Foreground="White">✅ Restore the original CTAB when the user cancels the dialog.</Run><LineBreak/>
<Run Foreground="White">✅ Remember the last search pattern for repeated use.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DodgerBlue">Important Commands and Helper Functions</Run></Bold><LineBreak/>
<Run Foreground="White">🧩 _gtl:temp-dcl-path creates a unique temporary DCL file path for each run.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:write-dcl writes the Go To Layout dialog definition at runtime.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:layouts-raw collects Model plus all layout names for browsing.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:sort-ci sorts layout names case-insensitively.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:filter-layouts applies wildcard filtering to layout names.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:fill-list repopulates the DCL list box.</Run><LineBreak/>
<Run Foreground="White">🧩 gtl:update rebuilds the matches list, updates the counter, and manages OK and navigation button states.</Run><LineBreak/>
<Run Foreground="White">🧩 gtl:on-list, gtl:prev, and gtl:next handle direct selection and cyclic navigation.</Run><LineBreak/>
<Run Foreground="White">🧩 gtl:_set-ctab-if-preview switches the active tab when preview mode is enabled.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="LimeGreen">Practical Result</Run></Bold><LineBreak/>
<Run Foreground="White">🎯 The result is faster navigation through drawings with many layout tabs.</Run><LineBreak/>
<Run Foreground="White">📑 Users can search for layout names, preview tabs, and jump directly to the needed sheet without manually scrolling along the layout tab bar.</Run><LineBreak/>
<Run Foreground="White">✅ GoToLayout improves production navigation, sheet review, plotting preparation, and quality-control workflows in AutoCAD and Civil 3D drawings.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DarkRed">Important Notes</Run></Bold><LineBreak/>
<Run Foreground="White">⚠️ Preview mode temporarily changes CTAB while browsing; Cancel restores the original tab.</Run><LineBreak/>
<Run Foreground="White">⚠️ Empty filters are treated as * so all layouts are listed.</Run><LineBreak/>
<Run Foreground="White">⚠️ The temporary DCL file is deleted after the dialog closes.</Run><LineBreak/>
<Run Foreground="White">⚠️ The last filter is stored only as a session/global variable, not as a persistent external settings file.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="Yellow">Tags</Run></Bold><LineBreak/>
<Run Foreground="Yellow">🏷️ AutoCAD, 🏷️ Civil 3D, 🏷️ AutoLISP, 🏷️ Visual LISP, 🏷️ DCL dialog, 🏷️ CAD automation, 🏷️ CAD productivity, 🏷️ Layout navigation, 🏷️ Go to layout, 🏷️ Layout filter, 🏷️ Wildcard search, 🏷️ Paper space, 🏷️ CTAB, 🏷️ Sheet navigation, 🏷️ Layout preview, 🏷️ Plan set, 🏷️ Drawing review</Run><LineBreak/>


</TextBlock>
            
<Grid>
<Image Source="GoToLayout_000.jpg" Stretch="Uniform"/>
</Grid>

<Grid>
<MediaElement
 Source="GIF"
 Stretch="Uniform"
 Visibility="Visible"/>
 </Grid>

</StackPanel>
</src:RibbonToolTip.ExpandedContent>
</src:RibbonToolTip>



<src:RibbonToolTip x:Key="GoToLayout_2">
<src:RibbonToolTip.ExpandedContent>
<StackPanel>
<TextBlock Background="AntiqueWhite" TextAlignment="Left">
<Bold>Function Syntax: GoToLayout</Bold>
<LineBreak/>
<Hyperlink>AI+https://forums.augi.com/showthread.php?69541-A-way-to-select-a-layout-tab-with-a-lisp</Hyperlink>
<LineBreak/>
<Bold>Summary</Bold><LineBreak/>
This program provides an interactive way to find and switch to drawing layouts using wildcard filters, through a temporary DCL dialog generated at runtime.<LineBreak/>

<Bold>How the user runs it</Bold><LineBreak/>
Type <Run Foreground="DarkRed"><Bold>GOTOLAYOUT</Bold></Run> at the AutoCAD command line to open the dialog.<LineBreak/>

<Bold>What the user does in the dialog</Bold><LineBreak/>
• Enter a layout name filter using wildcards <Run Foreground="DarkRed"><Bold></Bold></Run> and <Run Foreground="DarkRed"><Bold>?</Bold></Run> (example: <Run Foreground="DarkRed">A</Run>, <Run Foreground="DarkRed">SHEET??</Run>).<LineBreak/>
• Review matching layouts in a list (the list includes <Run Foreground="DarkRed"><Bold>Model</Bold></Run>).<LineBreak/>
• Optionally enable <Run Foreground="DarkRed"><Bold>Preview switch while browsing</Bold></Run> to switch tabs as you move through the list.<LineBreak/>
• Use <Run Foreground="DarkRed"><Bold>Next</Bold></Run> and <Run Foreground="DarkRed"><Bold>Prev</Bold></Run> to cycle through matches (wrap-around navigation).<LineBreak/>
• Click <Run Foreground="DarkRed"><Bold>OK</Bold></Run> to commit the selected layout, or <Run Foreground="DarkRed"><Bold>Cancel</Bold></Run> to revert to the original tab.<LineBreak/>

<Bold>Functionalities</Bold><LineBreak/>
• Filters layouts using wildcard matching via <Run Foreground="DarkRed"><Bold>wcmatch</Bold></Run> with <Run Foreground="DarkRed"><Bold>*</Bold></Run> and <Run Foreground="DarkRed"><Bold>?</Bold></Run> patterns.<LineBreak/>
• Preserves original layout name casing for display and for switching tabs (no forced uppercase for the actual layout names).<LineBreak/>
• Sorts matching results alphabetically in a case-insensitive manner for predictable browsing.<LineBreak/>
• Disables <Run Foreground="DarkRed"><Bold>OK</Bold></Run> and disables navigation when there are zero matches, preventing invalid layout switches.<LineBreak/>
• Remembers the last used filter pattern (it reappears the next time you run the command).<LineBreak/>
• Supports optional live switching using <Run Foreground="DarkRed"><Bold>Preview</Bold></Run>, so users can visually confirm they are on the intended sheet before committing.<LineBreak/>

<Bold>Important behaviors to recognize</Bold><LineBreak/>
• The active tab is changed by setting <Run Foreground="DarkRed"><Bold>CTAB</Bold></Run> to the selected layout name.<LineBreak/>
• If the user cancels, the program restores the original <Run Foreground="DarkRed"><Bold>CTAB</Bold></Run> (even if preview switching was used).<LineBreak/>
• If the filter is empty, it is treated as <Run Foreground="DarkRed"><Bold>*</Bold></Run> (meaning all layouts match).<LineBreak/>

<Bold>Temporary files and cleanup</Bold><LineBreak/>
• The dialog is created by writing a temporary <Run Foreground="DarkRed"><Bold>.dcl</Bold></Run> file with a unique name each run (generated with <Run Foreground="DarkRed"><Bold>vl-filename-mktemp</Bold></Run>).<LineBreak/>
• The temporary <Run Foreground="DarkRed"><Bold>.dcl</Bold></Run> file is deleted after the dialog closes, whether the user clicks OK or Cancel.<LineBreak/>


<Bold><Run Foreground="DodgerBlue">Description</Run></Bold><LineBreak/>
<Run Foreground="White">📑 GoToLayout is an AutoCAD and Civil 3D AutoLISP navigation utility for quickly switching to layout tabs through a filtered DCL dialog.</Run><LineBreak/>
<Run Foreground="White">🔍 It supports wildcard layout searches, preview switching while browsing, Previous and Next navigation, and cancel-safe restoration of the original tab.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DodgerBlue">Function Syntax</Run></Bold><LineBreak/>
<Run Foreground="White">🚀 Main dialog command: </Run><Bold><Run Foreground="Orange">GoToLayout</Run></Bold><LineBreak/>
<Run Foreground="White">🧰 Load the LSP with APPLOAD and run the command in AutoCAD or Civil 3D.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DodgerBlue">SEO Optimized Overview</Run></Bold><LineBreak/>
<Run Foreground="White">📑 GoToLayout is an SEO-friendly AutoCAD layout navigation tool for drawings with many paper-space tabs.</Run><LineBreak/>
<Run Foreground="White">🔍 The routine dynamically creates a Go To Layout DCL dialog with a wildcard layout-name filter, a match counter, a list of matching tabs, and Previous and Next buttons.</Run><LineBreak/>
<Run Foreground="White">👁️ The Preview switch can update CTAB while the user browses the results, making it easier to visually inspect layout tabs before choosing the final destination.</Run><LineBreak/>
<Run Foreground="White">🧠 The last used filter pattern is remembered across command runs through the global variable *gtl:lastpat*.</Run><LineBreak/>
<Run Foreground="White">🛡️ If the dialog is cancelled, the routine restores the original layout tab so accidental browsing does not leave the drawing on the wrong sheet.</Run><LineBreak/>
<Run Foreground="White">📌 This is useful for Civil 3D plan sets, DWG files with many layouts, sheet navigation, plotting preparation, and layout quality-control checks.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="LimeGreen">Primary Workflow</Run></Bold><LineBreak/>
<Run Foreground="White">1️⃣ Load GoToLayout into AutoCAD or Civil 3D with APPLOAD.</Run><LineBreak/>
<Run Foreground="White">2️⃣ Run GoToLayout from the command line.</Run><LineBreak/>
<Run Foreground="White">3️⃣ Use the dialog or command prompts to select the target layouts, layers, viewports, or plot settings.</Run><LineBreak/>
<Run Foreground="White">4️⃣ Review the preview, status list, or command-line feedback before applying changes.</Run><LineBreak/>
<Run Foreground="White">5️⃣ Apply the operation and verify the result in the active drawing.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DodgerBlue">Main Functionalities</Run></Bold><LineBreak/>
<Run Foreground="White">✅ Open a compact DCL dialog for fast layout-tab navigation.</Run><LineBreak/>
<Run Foreground="White">✅ Filter layout names with wildcard patterns using * and ?.</Run><LineBreak/>
<Run Foreground="White">✅ Include Model together with paper-space layouts in the searchable list.</Run><LineBreak/>
<Run Foreground="White">✅ Sort matched layouts case-insensitively.</Run><LineBreak/>
<Run Foreground="White">✅ Preview matched tabs by switching CTAB while browsing.</Run><LineBreak/>
<Run Foreground="White">✅ Move through filtered matches with Previous and Next buttons.</Run><LineBreak/>
<Run Foreground="White">✅ Confirm a layout with OK and switch to it.</Run><LineBreak/>
<Run Foreground="White">✅ Restore the original CTAB when the user cancels the dialog.</Run><LineBreak/>
<Run Foreground="White">✅ Remember the last search pattern for repeated use.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DodgerBlue">Important Commands and Helper Functions</Run></Bold><LineBreak/>
<Run Foreground="White">🧩 _gtl:temp-dcl-path creates a unique temporary DCL file path for each run.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:write-dcl writes the Go To Layout dialog definition at runtime.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:layouts-raw collects Model plus all layout names for browsing.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:sort-ci sorts layout names case-insensitively.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:filter-layouts applies wildcard filtering to layout names.</Run><LineBreak/>
<Run Foreground="White">🧩 _gtl:fill-list repopulates the DCL list box.</Run><LineBreak/>
<Run Foreground="White">🧩 gtl:update rebuilds the matches list, updates the counter, and manages OK and navigation button states.</Run><LineBreak/>
<Run Foreground="White">🧩 gtl:on-list, gtl:prev, and gtl:next handle direct selection and cyclic navigation.</Run><LineBreak/>
<Run Foreground="White">🧩 gtl:_set-ctab-if-preview switches the active tab when preview mode is enabled.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="LimeGreen">Practical Result</Run></Bold><LineBreak/>
<Run Foreground="White">🎯 The result is faster navigation through drawings with many layout tabs.</Run><LineBreak/>
<Run Foreground="White">📑 Users can search for layout names, preview tabs, and jump directly to the needed sheet without manually scrolling along the layout tab bar.</Run><LineBreak/>
<Run Foreground="White">✅ GoToLayout improves production navigation, sheet review, plotting preparation, and quality-control workflows in AutoCAD and Civil 3D drawings.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="DarkRed">Important Notes</Run></Bold><LineBreak/>
<Run Foreground="White">⚠️ Preview mode temporarily changes CTAB while browsing; Cancel restores the original tab.</Run><LineBreak/>
<Run Foreground="White">⚠️ Empty filters are treated as * so all layouts are listed.</Run><LineBreak/>
<Run Foreground="White">⚠️ The temporary DCL file is deleted after the dialog closes.</Run><LineBreak/>
<Run Foreground="White">⚠️ The last filter is stored only as a session/global variable, not as a persistent external settings file.</Run><LineBreak/>
<LineBreak/>
<Bold><Run Foreground="Yellow">Tags</Run></Bold><LineBreak/>
<Run Foreground="Yellow">🏷️ AutoCAD, 🏷️ Civil 3D, 🏷️ AutoLISP, 🏷️ Visual LISP, 🏷️ DCL dialog, 🏷️ CAD automation, 🏷️ CAD productivity, 🏷️ Layout navigation, 🏷️ Go to layout, 🏷️ Layout filter, 🏷️ Wildcard search, 🏷️ Paper space, 🏷️ CTAB, 🏷️ Sheet navigation, 🏷️ Layout preview, 🏷️ Plan set, 🏷️ Drawing review</Run><LineBreak/>



</TextBlock>
            
<Grid>
<Image Source="GoToLayout_000.jpg" Stretch="Uniform"/>
</Grid>

<Grid>
<MediaElement
 Source="GIF"
 Stretch="Uniform"
 Visibility="Visible"/>
 </Grid>

</StackPanel>
</src:RibbonToolTip.ExpandedContent>
</src:RibbonToolTip>


</ResourceDictionary>

Share this page:

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
0
Would love your thoughts, please comment.x
()
x