From 3746091bd112940071f69a90b983d5bcc1da91cf Mon Sep 17 00:00:00 2001 From: Jeremy Tammik Date: Wed, 18 Sep 2019 11:58:48 +0200 Subject: [PATCH] moved to new location on new machine --- .../PointCloudEngine/CS/PointCloudEngine.XML | 543 ++++++++++++++++++ SDK/Samples/RvtSamples/CS/RvtSamples.txt | 476 +++++++-------- 2 files changed, 781 insertions(+), 238 deletions(-) create mode 100644 SDK/Samples/PointCloudEngine/CS/PointCloudEngine.XML diff --git a/SDK/Samples/PointCloudEngine/CS/PointCloudEngine.XML b/SDK/Samples/PointCloudEngine/CS/PointCloudEngine.XML new file mode 100644 index 00000000..eeab9fdd --- /dev/null +++ b/SDK/Samples/PointCloudEngine/CS/PointCloudEngine.XML @@ -0,0 +1,543 @@ + + + + PointCloudEngine + + + + + An implementation for a file-based point cloud. + + + The file format is based upon XML. A sample XML looks like: + + + + + + + + + + + + + + + + + + The scale value applies to the entire point cloud. One or more cell values should be supplied, + with the coordinates of the opposing corners, a color, and an option whether or not to randomize + the generated points. + + + + + Constructs a new XML-based point cloud access. + + The full path to the file. + + + + Sets up the file-based point cloud. + + + + + The implementation of IPointCloudAccess.GetName(). + + The name (the file name). + + + + The implementation of IPointCloudAccess.GetColorEncoding() + + The color encoding. + + + + The implementation of IPointCloudAccess.CreatePointSetIterator(). + + The filter. + The view id (unused). + The new iterator. + + + + The implementation of IPointCloudAccess.CreatePointSetIterator(). + + The filter. + The density. + The view id (unused). + The new iterator. + + + + The implementation of IPointCloudAccess.GetExtent(). + + The extents of the point cloud. + + + + The implementation of IPointCloudAccess.GetOffset(). + + This method is not used by Revit and will be removed in a later pre-release build. + Zero. + + + + The implementation of IPointCloudAccess.GetUnitsToFeetConversionFactor(). + + The scale. + + + + The implementation of IPointCloudAccess.ReadPoints(). + + The filter. + The view id (unused). + The point cloud buffer. + The maximum number of points. + The number of points read. + + + + The implementation of IPointCloudAccess.Free(). + + + + + The base class for all IPointCloudAccess implementations in this sample. + + + + + Constructs a new instance of the base class. + + + + + Adds a new cell to the point cloud. + + The lower left point. + The upper right point. + The color. + True to randomize point number and location, false for a regular arrangement of points. + + + + Adds a new cell to the point cloud. + + The lower left point. + The upper right point. + The color. + + + + Adds a cell to the stored outline of the point cloud. If the cell boundaries extend beyond the current outline, the outline + is adjusted. + + + + + + Gets the outline calculated from all cells in the point cloud. + + + + + + Gets the scale stored for this point cloud. + + + + + + Saves the contents of the point cloud into an XML element. + + The XML element in which to save the point cloud properties. + + + + The internal implementation for point cloud read requests from Revit. + + Both IPointCloudAccess.ReadPoints() and IPointSetIterator.ReadPoints() are served by this method. + The point cloud filter. + The point cloud buffer. + The maximum number of points in the buffer. + The start index for points. Pass 0 if called from IPointCloudAccess.ReadPoints() or if this is the first + call to IPointSetIterator.ReadPoints(). Pass the previous cumulative number of read points for second and successive calls to + IPointSetIterator.ReadPoints(). + The number of points read. + + + + Sets up a point cloud from an XML root element. + + The root element. + + + + The implementation for an IPointSetIterator for a file-based or predefined point cloud. + + + + + Constructs a new instance of the point cloud iterator. + + The access. + The filter used for this iteration. + + + + Implementation of IPointSetIterator.ReadPoints() + + The point buffer. + The buffer size. + The number of points read. + + + + Implementation of IPointSetIterator.Free() + + + + + This class is used to calculate and store points for a given cell. + + + + + The number of points in the cell. + + + + + The lower left point of the cell. + + + + + The upper right point of the cell. + + + + + The points in the cell. + + + + + Creates a new instance of a rectangular cell. + + The lower left point of the cell. + The upper right point of the cell. + The color used for points in the cell. + True to apply randomization to the number and location of points, false for a regular arrangement of points. + + + + Invokes the calculation for all points in the cell. + + + + + Serializes the properties of the cell to an XML element. + + The element to which the properties are added as subelements. + + + + Constructs a new instance of a rectangular cell from an XML element. + + The XML element representing the cell. + + + + ExternalApplication used to register the point cloud engines managed by this sample. + + + + + The implementation of IExternalApplication.OnStartup() + + The Revit application. + Result.Succeeded + + + + The implementation of IExternalApplication.OnShutdown() + + The Revit application. + Result.Succeeded. + + + + ExternalCommand to add a predefined point cloud. + + + + + The implementation for IExternalCommand.Execute() + + The Revit command data. + The error message (ignored). + The elements to display in the failure dialog (ignored). + Result.Succeeded + + + + ExternalCommand to a predefined point cloud with randomized points. + + + + + The implementation for IExternalCommand.Execute() + + The Revit command data. + The error message (ignored). + The elements to display in the failure dialog (ignored). + Result.Succeeded + + + + ExternalCommand to add a predefined point cloud at a non-default transform. + + + + + The implementation for IExternalCommand.Execute() + + The Revit command data. + The error message (ignored). + The elements to display in the failure dialog (ignored). + Result.Succeeded + + + + Base class for ExternalCommands used to add point cloud instances programmatically. + + + + + Adds a point cloud instance programmatically. + + The document. + The engine identifier string. + The identifier for the particular point cloud. + The transform to apply to the new point cloud instance. + + + + Utility ExternalCommand to take a predefined point cloud and write the corresponding XML for it to disk. + + + + + The implementation for IExternalCommand.Execute() + + The Revit command data. + The error message (ignored). + The elements to display in the failure dialog (ignored). + Result.Succeeded + + + + An implementation for a non file-based point cloud. In this implementaiton, the location of the cells, including their colors and options, + are hardcoded. + + + + + Constructs a new predefined point cloud access instance. + + The identifier of the point cloud. + + + + Constructs a new predefined point cloud access instance. + + The identifier of the point cloud. + True to use randomization for the point location and number, false otherwise. + + + + Sets up the predefined point cloud. + + True to use randomization for the point location and number, false otherwise. + + + + The implementation of IPointCloudAccess.GetName(). + + The name (the file name). + + + + The implementation of IPointCloudAccess.GetColorEncoding() + + The color encoding. + + + + The implementation of IPointCloudAccess.CreatePointSetIterator(). + + The filter. + The view id (unused). + The new iterator. + + + + The implementation of IPointCloudAccess.CreatePointSetIterator(). + + The filter. + The density. + The view id (unused). + The new iterator. + + + + The implementation of IPointCloudAccess.GetExtent(). + + The extents of the point cloud. + + + + The implementation of IPointCloudAccess.GetOffset(). + + This method is not used by Revit and will be removed in a later pre-release build. + Zero. + + + + The implementation of IPointCloudAccess.GetUnitsToFeetConversionFactor(). + + The scale. + + + + The implementation of IPointCloudAccess.ReadPoints(). + + The filter. + The view id (unused). + The point cloud buffer. + The maximum number of points. + The number of points read. + + + + The implementation of IPointCloudAccess.Free(). + + + + + The type of engine. + + Because the same engine implementation is used for all types of engines in this sample, a member of this enumerated type + is used to determine the logic necessary to create the IPointCloudAccess instance. + + + + A predefined point cloud engine (non-randomized). + + + + + A predefined point cloud engine (randomized). + + + + + A file based point cloud engine. + + + + + An implementation of IPointCloudEngine used by all the custom engines in this sample. + + + + + Constructs a new instance of the engine. + + The type of point cloud served by this engine instance. + + + + Implementation of IPointCloudEngine.CreatePointCloudAccess(). + + The identifier (or file name) for the desired point cloud. + The IPointCloudAccess implementation serving this point cloud. + + + + Implementation of IPointCloudEngine.Free(). + + + + + Utilities used by the sample to process XML entries in file-based point clouds. + + + + + Gets an XYZ point from an XML element. + + The element. + The XYZ. + + + + Gets a boolean value from an XML element. + + The element. + The value. + + + + Gets a double value from an XML element. + + The element. + The value. + + + + Gets an integer value from an XML element. + + The element. + The value. + + + + Gets a color value (in the form needed for inclusion in a CloudPoint) from an XML element. + + The element. + The value. + + + + Gets the XML element representing a point. + + The point. + The name of the XML element. + The element. + + + + Gets the XML element representing a CloudPoint color. + + The color. + The name. + The element. + + + + Gets the XML element representing an object. + + The object. + The name. + The element. + + + diff --git a/SDK/Samples/RvtSamples/CS/RvtSamples.txt b/SDK/Samples/RvtSamples/CS/RvtSamples.txt index 4d7c0d32..0aa8a31d 100644 --- a/SDK/Samples/RvtSamples/CS/RvtSamples.txt +++ b/SDK/Samples/RvtSamples/CS/RvtSamples.txt @@ -3,7 +3,7 @@ EnergyAnalysis Model Demonstrates how to use EnergyAnalysisModel API. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\GeometryAPI\EnergyAnalysisModel\CS\bin\Debug\EnergyAnalysisModel.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesGeometryAPI\EnergyAnalysisModel\CS\bin\Debug\EnergyAnalysisModel.dll Revit.SDK.Samples.EnergyAnalysisModel.CS.Command Annotation @@ -11,7 +11,7 @@ Tag Rooms Auto tag all rooms in a specified level. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AutoTagRooms\CS\bin\Debug\AutoTagRooms.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAutoTagRooms\CS\bin\Debug\AutoTagRooms.dll Revit.SDK.Samples.AutoTagRooms.CS.Command Annotation @@ -19,7 +19,7 @@ Create Dimensions Add a dimension to a selected structural wall from its start to its end. Name the dimensions 'Dimension N' where N is an increasing number for each dimension. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateDimensions\CS\bin\Debug\CreateDimensions.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateDimensions\CS\bin\Debug\CreateDimensions.dll Revit.SDK.Samples.CreateDimensions.CS.Command Annotation @@ -27,7 +27,7 @@ LeaderLineAndDimensionLineSuperposition. Using new dimension api to move leader end point. Make the dimension line and leader line to be superposition. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DimensionLeaderEnd\CS\bin\Debug\DimensionLeaderEnd.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDimensionLeaderEnd\CS\bin\Debug\DimensionLeaderEnd.dll Revit.SDK.Samples.DimensionLeaderEnd.CS.MoveHorizontally Annotation @@ -35,7 +35,7 @@ MoveToPickedPoint. Using new dimension api to move leader end point. Move to picked point. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DimensionLeaderEnd\CS\bin\Debug\DimensionLeaderEnd.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDimensionLeaderEnd\CS\bin\Debug\DimensionLeaderEnd.dll Revit.SDK.Samples.DimensionLeaderEnd.CS.MoveToPickedPoint Annotation @@ -43,7 +43,7 @@ Spot Dimension Get all spot dimensions in all views and show their properties. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SpotDimension\CS\bin\Debug\SpotDimension.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSpotDimension\CS\bin\Debug\SpotDimension.dll Revit.SDK.Samples.SpotDimension.CS.Command Annotation @@ -51,7 +51,7 @@ TagBeam - Tag Beam Tag beam's start and end. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\TagBeam\CS\bin\Debug\TagBeam.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTagBeam\CS\bin\Debug\TagBeam.dll Revit.SDK.Samples.TagBeam.CS.Command Annotation @@ -59,7 +59,7 @@ TagBeam - Tag Rebar Tag selected Rebar. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\TagBeam\CS\bin\Debug\TagBeam.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTagBeam\CS\bin\Debug\TagBeam.dll Revit.SDK.Samples.TagBeam.CS.TagRebar Annotation @@ -67,7 +67,7 @@ TagBeam - Create Text Create a new TextNote instance for selected Rebar. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\TagBeam\CS\bin\Debug\TagBeam.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTagBeam\CS\bin\Debug\TagBeam.dll Revit.SDK.Samples.TagBeam.CS.CreateText Annotation, Basics @@ -75,7 +75,7 @@ Capitalize all TextNote elements This command iterates through the document and applies the 'AllCaps' formatting to them. This will show text in upper case characters. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CapitalizeAllTextNotes\CS\bin\Debug\CapitalizeAllTextNotes.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCapitalizeAllTextNotes\CS\bin\Debug\CapitalizeAllTextNotes.dll Revit.SDK.Samples.CapitalizeAllTextNotes.CS.Command Annotation, Basics @@ -83,7 +83,7 @@ Delete Dimensions Delete all unpinned dimensions found in current selection. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DeleteDimensions\CS\bin\Debug\DeleteDimensions.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDeleteDimensions\CS\bin\Debug\DeleteDimensions.dll Revit.SDK.Samples.DeleteDimensions.CS.Command Annotation, Elements, Views @@ -91,7 +91,7 @@ Create PathOfTravel. This sample demonstrated how to create PathOfTravel elements from room(s) to door(s) in a plan view. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PathOfTravel\CS\bin\Debug\PathOfTravel.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPathOfTravel\CS\bin\Debug\PathOfTravel.dll Revit.SDK.Samples.PathOfTravelCreation.CS.Command Basics @@ -99,7 +99,7 @@ Delete Objects (CS) Delete selected elements. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DeleteObject\CS\bin\Debug\DeleteObject.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDeleteObject\CS\bin\Debug\DeleteObject.dll Revit.SDK.Samples.DeleteObject.CS.Command Basics @@ -107,7 +107,7 @@ ErrorHandling Demonstrates how to use the error handling framework.. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ErrorHandling\CS\bin\Debug\ErrorHandling.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesErrorHandling\CS\bin\Debug\ErrorHandling.dll Revit.SDK.Samples.ErrorHandling.CS.Command Basics @@ -115,7 +115,7 @@ ProgressNotifier ProgressNotifier LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Events\ProgressNotifier\CS\bin\Debug\ProgressNotifier.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesEvents\ProgressNotifier\CS\bin\Debug\ProgressNotifier.dll Revit.SDK.Samples.ProgressNotifier.CS.Command Basics @@ -123,7 +123,7 @@ Hello Revit (CS) Shows how a basic ExternalCommand can be added to the Revit user interface. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\HelloRevit\CS\bin\Debug\HelloRevit.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesHelloRevit\CS\bin\Debug\HelloRevit.dll Revit.SDK.Samples.HelloRevit.CS.Command Basics @@ -131,7 +131,7 @@ Journaling Show how an external application can participate in the journaling mechanism. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Journaling\CS\bin\Debug\Journaling.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesJournaling\CS\bin\Debug\Journaling.dll Revit.SDK.Samples.Journaling.CS.Command Basics @@ -139,7 +139,7 @@ Show Modeless Form (External Event) This sample shows how to utilize an External Event object in order to communicate with the Revit API from an external modeless dialog. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ModelessDialog\ModelessForm_ExternalEvent\CS\bin\Debug\ModelessForm_ExternalEvent.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesModelessDialog\ModelessForm_ExternalEvent\CS\bin\Debug\ModelessForm_ExternalEvent.dll Revit.SDK.Samples.ModelessForm_ExternalEvent.CS.Command Basics @@ -147,7 +147,7 @@ Show Modeless Form (Idling Event) An applicaiton with a modeless dialog using the Idling event to comunicate with Revit API LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ModelessDialog\ModelessForm_IdlingEvent\CS\bin\Debug\ModelessForm_IdlingEvent.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesModelessDialog\ModelessForm_IdlingEvent\CS\bin\Debug\ModelessForm_IdlingEvent.dll Revit.SDK.Samples.ModelessForm_IdlingEvent.CS.Command Basics @@ -155,7 +155,7 @@ Analyze Wall Face This sample shows how to utilize the Applicaiton.Idling event in order to communicate with the Revit API from an external work thread. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\MultiThreading\WorkThread\CS\bin\Debug\WorkThread.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMultiThreading\WorkThread\CS\bin\Debug\WorkThread.dll Revit.SDK.Samples.WorkThread.CS.Command Basics @@ -163,7 +163,7 @@ Highlight by Phase Highlight by Phase. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PhaseSample\VB.NET\bin\PhaseSample.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPhaseSample\VB.NET\bin\PhaseSample.dll Revit.SDK.Samples.PhaseSample.VB.NET.Command Basics @@ -171,7 +171,7 @@ Project Information Project Information. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ProjectInfo\CS\bin\Debug\ProjectInfo.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesProjectInfo\CS\bin\Debug\ProjectInfo.dll Revit.SDK.Samples.ProjectInfo.CS.Command Basics @@ -179,7 +179,7 @@ TransactionControl Demonstrate how to use transaction control. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\TransactionControl\CS\bin\Debug\TransactionControl.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTransactionControl\CS\bin\Debug\TransactionControl.dll Revit.SDK.Samples.TransactionControl.CS.Command Basics, Data Exchange @@ -187,7 +187,7 @@ Units API The sample of Revit Units API. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Units\CS\bin\Debug\Units.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesUnits\CS\bin\Debug\Units.dll Revit.SDK.Samples.Units.CS.Command Basics, Elements @@ -195,7 +195,7 @@ Display Options Display Options. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DesignOptionReader\VB.NET\bin\DesignOptionReader.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDesignOptionReader\VB.NET\bin\DesignOptionReader.dll Revit.SDK.Samples.DesignOptionReader.VB.NET.Command Basics, Families @@ -203,7 +203,7 @@ Interactive placement of family instance via options This sample demonstrates how to place the family instance via options LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PlacementOptions\CS\bin\Debug\PlacementOptions.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPlacementOptions\CS\bin\Debug\PlacementOptions.dll Revit.SDK.Samples.PlacementOptions.CS.Command Basics, Families @@ -211,7 +211,7 @@ RvtCmd_LibraryPaths List the Revit library paths. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RevitCommands\VB.NET\bin\RevitCommands.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRevitCommands\VB.NET\bin\RevitCommands.dll Revit.SDK.Samples.RevitCommands.VB.NET.RvtCmd_LibraryPaths Basics, Families @@ -219,7 +219,7 @@ RvtCmd_LoadFamilySymbol Load a family symbol/type. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RevitCommands\VB.NET\bin\RevitCommands.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRevitCommands\VB.NET\bin\RevitCommands.dll Revit.SDK.Samples.RevitCommands.VB.NET.RvtCmd_LoadFamilySymbol Basics, Families @@ -227,7 +227,7 @@ RvtCmd_LoadFamily Load a family. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RevitCommands\VB.NET\bin\RevitCommands.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRevitCommands\VB.NET\bin\RevitCommands.dll Revit.SDK.Samples.RevitCommands.VB.NET.RvtCmd_LoadFamily Basics, Families @@ -235,7 +235,7 @@ RvtCmd_Selection show how to use selection set. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RevitCommands\VB.NET\bin\RevitCommands.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRevitCommands\VB.NET\bin\RevitCommands.dll Revit.SDK.Samples.RevitCommands.VB.NET.RvtCmd_Selection Basics, Families @@ -243,7 +243,7 @@ RvtCmd_ShowElementData show parameters in selected entities. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RevitCommands\VB.NET\bin\RevitCommands.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRevitCommands\VB.NET\bin\RevitCommands.dll Revit.SDK.Samples.RevitCommands.VB.NET.RvtCmd_ShowElementData Basics, Geometry @@ -251,7 +251,7 @@ Display graphics using DirectContext3D Select elements whose graphics should be redrawn using DirectContext3D. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DuplicateGraphics\CS\bin\Debug\DuplicateGraphics.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDuplicateGraphics\CS\bin\Debug\DuplicateGraphics.dll Revit.SDK.Samples.DuplicateGraphics.CS.CommandDuplicateGraphics Basics, Geometry @@ -259,7 +259,7 @@ Clear DirectContext3D graphics Remove external graphics. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DuplicateGraphics\CS\bin\Debug\DuplicateGraphics.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDuplicateGraphics\CS\bin\Debug\DuplicateGraphics.dll Revit.SDK.Samples.DuplicateGraphics.CS.CommandClearExternalGraphics Basics, Geometry @@ -267,7 +267,7 @@ ReferencePlane Allow user to create a reference plane at the left face of the wall or at the bottom of slab which is selected first. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ReferencePlane\CS\bin\Debug\ReferencePlane.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesReferencePlane\CS\bin\Debug\ReferencePlane.dll Revit.SDK.Samples.ReferencePlane.CS.Command Basics, Geometry, Views @@ -275,7 +275,7 @@ Export 2D views with CustomExporter Export 2D views with CustomExporter, using varying options of the exporter. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CustomExporter\Custom2DExporter\CS\bin\Debug\Custom2DExporter.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCustomExporter\Custom2DExporter\CS\bin\Debug\Custom2DExporter.dll Revit.SDK.Samples.Custom2DExporter.CS.Command Basics, Parameters @@ -283,7 +283,7 @@ About Revit Show the Revit product name, version and build number. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\VersionChecking\CS\bin\Debug\VersionChecking.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesVersionChecking\CS\bin\Debug\VersionChecking.dll Revit.SDK.Samples.VersionChecking.CS.Command Basics, Structure @@ -291,7 +291,7 @@ Rotate Framing Objects (CS) Rotate selected objects, such as beams, braces and columns. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RotateFramingObjects\CS\bin\Debug\RotateFramingObjects.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRotateFramingObjects\CS\bin\Debug\RotateFramingObjects.dll Revit.SDK.Samples.RotateFramingObjects.CS.RotateFramingObjects Data Exchange @@ -299,7 +299,7 @@ Arch Sample - Export to Excel Export data to Excel, sorted by categories LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ArchSample\VB.NET\bin\ArchSample.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesArchSample\VB.NET\bin\ArchSample.dll Revit.SDK.Samples.ArchSample.VB.NET.Command Data Exchange @@ -307,7 +307,7 @@ Import and Export Export current project to dwg, dwf(x), gbxml or fbx files and import a dwg or image file into Revit. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ImportExport\CS\bin\Debug\ImportExport.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesImportExport\CS\bin\Debug\ImportExport.dll Revit.SDK.Samples.ImportExport.CS.Command Data Exchange @@ -315,7 +315,7 @@ Panel Schedule Sample - Export Data Exoport Revit Panle Schedule(s) to CSV file(s) or HTML page(s). LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PanelSchedule\CS\bin\Debug\PanelSchedule.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPanelSchedule\CS\bin\Debug\PanelSchedule.dll Revit.SDK.Samples.PanelSchedule.CS.PanelScheduleExport Data Exchange @@ -323,7 +323,7 @@ Panel Schedule Sample - View Instance Creation Create Panel Schedule View instance for a panel. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PanelSchedule\CS\bin\Debug\PanelSchedule.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPanelSchedule\CS\bin\Debug\PanelSchedule.dll Revit.SDK.Samples.PanelSchedule.CS.InstanceViewCreation Data Exchange @@ -331,7 +331,7 @@ Panel Schedule Sample - Sheet Instance Creation Place Panel Schedule View instance on a sheet view. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PanelSchedule\CS\bin\Debug\PanelSchedule.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPanelSchedule\CS\bin\Debug\PanelSchedule.dll Revit.SDK.Samples.PanelSchedule.CS.SheetImport Data Exchange @@ -339,7 +339,7 @@ View Printer Print user selected printable views. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ViewPrinter\CS\bin\Debug\ViewPrinter.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesViewPrinter\CS\bin\Debug\ViewPrinter.dll Revit.SDK.Samples.ViewPrinter.CS.Command Data Exchange, Families @@ -347,7 +347,7 @@ DWGFamilyCreation Import dwg file into family document. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\DWGFamilyCreation\CS\bin\Debug\DWGFamilyCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\DWGFamilyCreation\CS\bin\Debug\DWGFamilyCreation.dll Revit.SDK.Samples.DWGFamilyCreation.CS.Command Elements @@ -355,7 +355,7 @@ Create CompoundStructure for wall This command is to create CompoundStructure for wall. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CompoundStructure\CS\bin\Debug\CompoundStructure.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCompoundStructure\CS\bin\Debug\CompoundStructure.dll Revit.SDK.Samples.CompoundStructureCreation.CS.WallCompoundStructure Elements @@ -363,7 +363,7 @@ Create and set FillPattern Create and set FillPattern or LinePattern to face and grid LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateFillPattern\CS\bin\Debug\CreateFillPattern.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateFillPattern\CS\bin\Debug\CreateFillPattern.dll Revit.SDK.Samples.CreateFillPattern.CS.Command Elements @@ -371,7 +371,7 @@ Create Triangles Topography Creates a new topography surface element from facets LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateTrianglesTopography\CS\bin\Debug\CreateTrianglesTopography.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateTrianglesTopography\CS\bin\Debug\CreateTrianglesTopography.dll Revit.SDK.Samples.CreateTrianglesTopography.CS.Command Elements @@ -379,7 +379,7 @@ Curtain System Create curtain systems and edit their curtain grids LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CurtainSystem\CS\bin\Debug\CurtainSystem.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCurtainSystem\CS\bin\Debug\CurtainSystem.dll Revit.SDK.Samples.CurtainSystem.CS.Command Elements @@ -387,7 +387,7 @@ Curtain Wall and Grid Create a curtain wall and edit its grid LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CurtainWallGrid\CS\bin\Debug\CurtainWallGrid.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCurtainWallGrid\CS\bin\Debug\CurtainWallGrid.dll Revit.SDK.Samples.CurtainWallGrid.CS.Command Elements @@ -395,7 +395,7 @@ Datums modification: style Datums modification: style LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DatumsModification\CS\bin\Debug\DatumsModification.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDatumsModification\CS\bin\Debug\DatumsModification.dll Revit.SDK.Samples.DatumsModification.CS.DatumStyleModification Elements @@ -403,7 +403,7 @@ Datums modification: alignment Datums modification: alignment LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DatumsModification\CS\bin\Debug\DatumsModification.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDatumsModification\CS\bin\Debug\DatumsModification.dll Revit.SDK.Samples.DatumsModification.CS.DatumAlignment Elements @@ -411,7 +411,7 @@ Datums modification: propagation Datums modification: propagation LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DatumsModification\CS\bin\Debug\DatumsModification.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDatumsModification\CS\bin\Debug\DatumsModification.dll Revit.SDK.Samples.DatumsModification.CS.DatumPropagation Elements @@ -419,7 +419,7 @@ Create and modify view filters. Create and modify view filters. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ElementFilter\ViewFilters\CS\bin\Debug\ViewFilters.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesElementFilter\ViewFilters\CS\bin\Debug\ViewFilters.dll Revit.SDK.Samples.ViewFilters.CS.Command Elements @@ -427,7 +427,7 @@ Extensible Storage Manager Extensible Storage Manager LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ExtensibleStorageManager\ExtensibleStorageManager\CS\bin\Debug\ExtensibleStorageManager.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesExtensibleStorageManager\ExtensibleStorageManager\CS\bin\Debug\ExtensibleStorageManager.dll ExtensibleStorageManager.Command Elements @@ -435,7 +435,7 @@ ExtensibleStorageUtility-DeleteStorage ExtensibleStorageUtility-DeleteStorage LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ExtensibleStorageUtility\CS\bin\Debug\ExtensibleStorageUtility.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesExtensibleStorageUtility\CS\bin\Debug\ExtensibleStorageUtility.dll Revit.SDK.Samples.ExtensibleStorageUtility.CS.DeleteStorage Elements @@ -443,7 +443,7 @@ ExtensibleStorageUtility-QueryStorage ExtensibleStorageUtility-QueryStorage LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ExtensibleStorageUtility\CS\bin\Debug\ExtensibleStorageUtility.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesExtensibleStorageUtility\CS\bin\Debug\ExtensibleStorageUtility.dll Revit.SDK.Samples.ExtensibleStorageUtility.CS.QueryStorage Elements @@ -451,7 +451,7 @@ Foundation Slab Convert regular floors at the base of the building to octagonal slabs. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FoundationSlab\CS\bin\Debug\FoundationSlab.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFoundationSlab\CS\bin\Debug\FoundationSlab.dll Revit.SDK.Samples.FoundationSlab.CS.Command Elements @@ -459,7 +459,7 @@ GenerateFloor Generate a floor using a selection of walls that make a closed outline. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\GenerateFloor\CS\bin\Debug\GenerateFloor.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesGenerateFloor\CS\bin\Debug\GenerateFloor.dll Revit.SDK.Samples.GenerateFloor.CS.Command Elements @@ -467,7 +467,7 @@ Grid Creation Show how to create grids. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\GridCreation\CS\bin\Debug\GridCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesGridCreation\CS\bin\Debug\GridCreation.dll Revit.SDK.Samples.GridCreation.CS.Command Elements @@ -475,7 +475,7 @@ Create levels Show how to get all the levels in a document and how to create and delete a level and set its properties. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\LevelsProperty\CS\bin\Debug\LevelsProperty.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesLevelsProperty\CS\bin\Debug\LevelsProperty.dll Revit.SDK.Samples.LevelsProperty.CS.Command Elements @@ -483,7 +483,7 @@ Model Lines Report the number of each model line type and allow the user to specify the shape and sketch plane to create some new model lines. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ModelLines\CS\bin\Debug\ModelLines.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesModelLines\CS\bin\Debug\ModelLines.dll Revit.SDK.Samples.ModelLines.CS.Command Elements @@ -491,7 +491,7 @@ New hosted sweep Create hosted sweep and modify created hosted sweep LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\NewHostedSweep\CS\bin\Debug\NewHostedSweep.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesNewHostedSweep\CS\bin\Debug\NewHostedSweep.dll Revit.SDK.Samples.NewHostedSweep.CS.Command Elements @@ -499,7 +499,7 @@ New Openings Create openings on the selected floor or wall. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\NewOpenings\CS\bin\Debug\NewOpenings.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesNewOpenings\CS\bin\Debug\NewOpenings.dll Revit.SDK.Samples.NewOpenings.CS.Command Elements @@ -507,7 +507,7 @@ NewRoof Create or edit footprint roof and extrusion roof. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\NewRoof\CS\bin\Debug\NewRoof.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesNewRoof\CS\bin\Debug\NewRoof.dll Revit.SDK.Samples.NewRoof.CS.Command Elements @@ -515,7 +515,7 @@ Openings Display openings in project, and create model lines along its edges. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Openings\CS\bin\Debug\Openings.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesOpenings\CS\bin\Debug\Openings.dll Revit.SDK.Samples.Openings.CS.Command Elements @@ -523,7 +523,7 @@ PerformanceAdviserControl PerformanceAdviserControl LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PerformanceAdviserControl\CS\bin\Debug\PerformanceAdviserControl.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPerformanceAdviserControl\CS\bin\Debug\PerformanceAdviserControl.dll Revit.SDK.Samples.PerformanceAdviserControl.CS.UICommand Elements @@ -531,7 +531,7 @@ Shared Coordinate System Display the locations and site information of the project. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SharedCoordinateSystem\CS\bin\Debug\SharedCoordinateSystem.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSharedCoordinateSystem\CS\bin\Debug\SharedCoordinateSystem.dll Revit.SDK.Samples.SharedCoordinateSystem.CS.Command Elements @@ -539,7 +539,7 @@ Stairs automation A utility sample that creates a series of stairs, stairs runs and stairs landings configurations based upon predefined rules and parameters. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\StairsAutomation\CS\bin\Debug\StairsAutomation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesStairsAutomation\CS\bin\Debug\StairsAutomation.dll Revit.SDK.Samples.StairsAutomation.CS.Command Elements @@ -547,7 +547,7 @@ Winder Stairs API Sketched Winder Stairs LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\WinderStairs\CS\bin\Debug\WinderStairs.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesWinderStairs\CS\bin\Debug\WinderStairs.dll Revit.SDK.Samples.WinderStairs.CS.Command Elements, Geometry @@ -555,7 +555,7 @@ Shaft Hole Puncher Create shaft opening or create opening on wall, floor or beam. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ShaftHolePuncher\CS\bin\Debug\ShaftHolePuncher.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesShaftHolePuncher\CS\bin\Debug\ShaftHolePuncher.dll Revit.SDK.Samples.ShaftHolePuncher.CS.Command Elements, Geometry @@ -563,7 +563,7 @@ SlabShapeEditing Create vertex and crease on slab to edit it's shape. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SlabShapeEditing\CS\bin\Debug\SlabShapeEditing.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSlabShapeEditing\CS\bin\Debug\SlabShapeEditing.dll Revit.SDK.Samples.SlabShapeEditing.CS.Command Elements, Parameters @@ -571,7 +571,7 @@ Move Linear Move a linear element, such as a structural beam. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\MoveLinear\CS\bin\Debug\MoveLinear.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMoveLinear\CS\bin\Debug\MoveLinear.dll Revit.SDK.Samples.MoveLinear.CS.Command Elements, Parameters @@ -579,7 +579,7 @@ Slab Properties (CS) Display slab properties. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SlabProperties\CS\bin\Debug\SlabProperties.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSlabProperties\CS\bin\Debug\SlabProperties.dll Revit.SDK.Samples.SlabProperties.CS.Command Elements, Parameters @@ -587,7 +587,7 @@ Span Direction Display slab properties (span direction and span direction symbols). LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SpanDirection\CS\bin\Debug\SpanDirection.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSpanDirection\CS\bin\Debug\SpanDirection.dll Revit.SDK.Samples.SpanDirection.CS.Command Families @@ -595,7 +595,7 @@ Create Air Handler Create one air handler and add connectors. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\CreateAirHandler\CS\bin\Debug\CreateAirHandler.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\CreateAirHandler\CS\bin\Debug\CreateAirHandler.dll Revit.SDK.Samples.CreateAirHandler.CS.Command Families @@ -603,7 +603,7 @@ Create Truss Create truss in truss family document. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\CreateTruss\CS\bin\Debug\CreateTruss.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\CreateTruss\CS\bin\Debug\CreateTruss.dll Revit.SDK.Samples.CreateTruss.CS.Command Families @@ -611,7 +611,7 @@ GenericModelCreation The sample show how to create Generic Model family at family document. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\GenericModelCreation\CS\bin\Debug\GenericModelCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\GenericModelCreation\CS\bin\Debug\GenericModelCreation.dll Revit.SDK.Samples.GenericModelCreation.CS.Command Families @@ -619,7 +619,7 @@ TypeRegeneration The command check every type regeneration without any error LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\TypeRegeneration\CS\bin\Debug\TypeRegeneration.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\TypeRegeneration\CS\bin\Debug\TypeRegeneration.dll Revit.SDK.Samples.TypeRegeneration.CS.Command Families @@ -627,7 +627,7 @@ ValidateParameters This command will validate if every type has valid values for certain parameter LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\ValidateParameters\CS\bin\Debug\ValidateParameters.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\ValidateParameters\CS\bin\Debug\ValidateParameters.dll Revit.SDK.Samples.ValidateParameters.CS.Command Families @@ -635,7 +635,7 @@ WindowWizard This command is to create window family via wizard LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\WindowWizard\CS\bin\Debug\WindowWizard.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\WindowWizard\CS\bin\Debug\WindowWizard.dll Revit.SDK.Samples.WindowWizard.CS.Command Families @@ -643,7 +643,7 @@ In-Place Members Display In-Place Member's Properties and AnalyticalModel. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\InPlaceMembers\CS\bin\Debug\InPlaceMembers.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesInPlaceMembers\CS\bin\Debug\InPlaceMembers.dll Revit.SDK.Samples.InPlaceMembers.CS.Command Families @@ -651,7 +651,7 @@ DividedSurface by intersects Customize DividedSurface with intersection elements LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\DividedSurfaceByIntersects\CS\bin\Debug\DividedSurfaceByIntersects.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\DividedSurfaceByIntersects\CS\bin\Debug\DividedSurfaceByIntersects.dll Revit.SDK.Samples.DividedSurfaceByIntersects.CS.Command Families @@ -659,7 +659,7 @@ New Extrusion Form The sample show how to create extrusion form at family document. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\NewForm\CS\bin\Debug\NewForm.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\NewForm\CS\bin\Debug\NewForm.dll Revit.SDK.Samples.NewForm.CS.MakeExtrusionForm Families @@ -667,7 +667,7 @@ New Revolve Form The sample show how to create revolve form at family document. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\NewForm\CS\bin\Debug\NewForm.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\NewForm\CS\bin\Debug\NewForm.dll Revit.SDK.Samples.NewForm.CS.MakeRevolveForm Families @@ -675,7 +675,7 @@ New Loft Form The sample show how to create loft form at family document. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\NewForm\CS\bin\Debug\NewForm.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\NewForm\CS\bin\Debug\NewForm.dll Revit.SDK.Samples.NewForm.CS.MakeLoftForm Families @@ -683,7 +683,7 @@ New Swept Blend Form The sample show how to create swept blend form at family document. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\NewForm\CS\bin\Debug\NewForm.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\NewForm\CS\bin\Debug\NewForm.dll Revit.SDK.Samples.NewForm.CS.MakeSweptBlendForm Families @@ -691,7 +691,7 @@ New Cap Form The sample show how to create cap form at family document. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\NewForm\CS\bin\Debug\NewForm.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\NewForm\CS\bin\Debug\NewForm.dll Revit.SDK.Samples.NewForm.CS.MakeCapForm Families @@ -699,7 +699,7 @@ Place FamilyInstance by face Create family instance on face. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PlaceFamilyInstanceByFace\CS\bin\Debug\PlaceFamilyInstanceByFace.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPlaceFamilyInstanceByFace\CS\bin\Debug\PlaceFamilyInstanceByFace.dll Revit.SDK.Samples.PlaceFamilyInstanceByFace.CS.Command Families @@ -707,7 +707,7 @@ Type Selector Retrieve all the types of the selected element, such as a wall and allow the selected element's type to be changed. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\TypeSelector\VB.NET\bin\TypeSelector.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTypeSelector\VB.NET\bin\TypeSelector.dll Revit.SDK.Samples.TypeSelector.VB.NET.Command Families, Parameters @@ -715,7 +715,7 @@ AddParameterToFamily Sample to show how to automatically add a large set of parameters to a family. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\AutoParameter\CS\bin\Debug\AutoParameter.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\AutoParameter\CS\bin\Debug\AutoParameter.dll Revit.SDK.Samples.AutoParameter.CS.AddParameterToFamily Families, Parameters @@ -723,7 +723,7 @@ AddParameterToFamilies Sample to show how to automatically add a large set of parameters to multiple family files. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\AutoParameter\CS\bin\Debug\AutoParameter.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\AutoParameter\CS\bin\Debug\AutoParameter.dll Revit.SDK.Samples.AutoParameter.CS.AddParameterToFamilies Families, Parameters @@ -731,7 +731,7 @@ Command Command LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyParametersOrder\CS\bin\Debug\FamilyParametersOrder.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyParametersOrder\CS\bin\Debug\FamilyParametersOrder.dll Revit.SDK.Samples.FamilyParametersOrder.CS.Command Geometry @@ -739,7 +739,7 @@ Multithreaded Calculation Multithreaded Calculation LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AnalysisVisualizationFramework\MultithreadedCalculation\CS\bin\Debug\MultithreadedCalculation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAnalysisVisualizationFramework\MultithreadedCalculation\CS\bin\Debug\MultithreadedCalculation.dll Revit.SDK.Samples.MultithreadedCalculation.CS.MultithreadedCalculation Geometry @@ -747,7 +747,7 @@ Gradient Results On Surface Gradient Results On Surface LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AnalysisVisualizationFramework\SpatialFieldGradient\CS\bin\Debug\SpatialFieldGradient.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAnalysisVisualizationFramework\SpatialFieldGradient\CS\bin\Debug\SpatialFieldGradient.dll Revit.SDK.Samples.AnalysisVisualizationFramework.CS.SpatialFieldGradient Geometry @@ -755,7 +755,7 @@ South Facing Walls Without ProjectLocation "" LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DirectionCalculation\CS\bin\Debug\DirectionCalculation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDirectionCalculation\CS\bin\Debug\DirectionCalculation.dll Revit.Samples.DirectionCalculation.FindSouthFacingWallsWithoutProjectLocation Geometry @@ -763,7 +763,7 @@ South Facing Walls With ProjectLocation "" LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DirectionCalculation\CS\bin\Debug\DirectionCalculation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDirectionCalculation\CS\bin\Debug\DirectionCalculation.dll Revit.Samples.DirectionCalculation.FindSouthFacingWallsWithProjectLocation Geometry @@ -771,7 +771,7 @@ South Facing Windows Without ProjectLocation "" LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DirectionCalculation\CS\bin\Debug\DirectionCalculation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDirectionCalculation\CS\bin\Debug\DirectionCalculation.dll Revit.Samples.DirectionCalculation.FindSouthFacingWindowsWithoutProjectLocation Geometry @@ -779,7 +779,7 @@ South Facing Windows With ProjectLocation "" LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DirectionCalculation\CS\bin\Debug\DirectionCalculation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDirectionCalculation\CS\bin\Debug\DirectionCalculation.dll Revit.Samples.DirectionCalculation.FindSouthFacingWindowsWithProjectLocation Geometry @@ -787,7 +787,7 @@ Auto Join Automatically join geometry of combinable elements. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FamilyCreation\AutoJoin\CS\bin\Debug\AutoJoin.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFamilyCreation\AutoJoin\CS\bin\Debug\AutoJoin.dll Revit.SDK.Samples.AutoJoin.CS.Command Geometry @@ -795,7 +795,7 @@ Find Columns Embedded In Walls Find Columns Embedded In Walls LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FindReferencesByDirection\FindColumns\CS\bin\Debug\FindColumns.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFindReferencesByDirection\FindColumns\CS\bin\Debug\FindColumns.dll Revit.SDK.Samples.FindColumns.CS.Command Geometry @@ -803,7 +803,7 @@ Measure Height of Skylight Measure Height of Skylight LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FindReferencesByDirection\MeasureHeight\CS\bin\Debug\MeasureHeight.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFindReferencesByDirection\MeasureHeight\CS\bin\Debug\MeasureHeight.dll Revit.SDK.Samples.MeasureHeight.CS.Command Geometry @@ -811,7 +811,7 @@ RayTraceBounce Find intersection between ray and face and create connecting lines. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FindReferencesByDirection\RaytraceBounce\CS\bin\Debug\RayTraceBounce.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFindReferencesByDirection\RaytraceBounce\CS\bin\Debug\RayTraceBounce.dll Revit.SDK.Samples.RayTraceBounce.CS.Command Geometry @@ -819,7 +819,7 @@ GeometryCreation_BooleanOperation GeometryCreation and BooleanOperation LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\GeometryAPI\GeometryCreation_BooleanOperation\CS\bin\Debug\GeometryCreation_BooleanOperation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesGeometryAPI\GeometryCreation_BooleanOperation\CS\bin\Debug\GeometryCreation_BooleanOperation.dll Revit.SDK.Samples.GeometryCreation_BooleanOperation.CS.Command Geometry @@ -827,7 +827,7 @@ Proximity Detection and Wall Join Control The usage of ElementIntersectsSolidFilter,ElementIntersectsElementFilter and WallUtils LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\GeometryAPI\ProximityDetection_WallJoinControl\CS\bin\Debug\ProximityDetection_WallJoinControl.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesGeometryAPI\ProximityDetection_WallJoinControl\CS\bin\Debug\ProximityDetection_WallJoinControl.dll Revit.SDK.Samples.ProximityDetection_WallJoinControl.CS.Command Geometry @@ -835,7 +835,7 @@ SlaveSymbolGeometry Demonstrates how to get the slave symbol geometry. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\GeometryAPI\SlaveSymbolGeometry\CS\bin\Debug\SlaveSymbolGeometry.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesGeometryAPI\SlaveSymbolGeometry\CS\bin\Debug\SlaveSymbolGeometry.dll Revit.SDK.Samples.SlaveSymbolGeometry.CS.Command Geometry @@ -843,7 +843,7 @@ Compute distance to panels Compute the distance from a selected object to all panels and store in a panel instance parameter LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\DistanceToPanels\CS\bin\Debug\DistanceToPanels.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\DistanceToPanels\CS\bin\Debug\DistanceToPanels.dll Revit.SDK.Samples.DistanceToPanels.CS.SetDistanceParam Geometry @@ -851,7 +851,7 @@ Manipulate form Show how to manipulate edges and profiles of form LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\ManipulateForm\CS\bin\Debug\ManipulateForm.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\ManipulateForm\CS\bin\Debug\ManipulateForm.dll Revit.SDK.Samples.ManipulateForm.CS.Command Geometry @@ -859,7 +859,7 @@ Measure Panel Area Measure curtain panels on divided surfaces and identify panels beyond a user-specified range LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\MeasurePanelArea\CS\bin\Debug\MeasurePanelArea.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\MeasurePanelArea\CS\bin\Debug\MeasurePanelArea.dll Revit.SDK.Samples.MeasurePanelArea.CS.MeasurePanelArea Geometry @@ -867,7 +867,7 @@ Compute the length and angle of edges Measure curtain panels on divided surfaces, store the length and angle data to parameters LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\PanelEdgeLengthAngle\CS\bin\Debug\PanelEdgeLengthAngle.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\PanelEdgeLengthAngle\CS\bin\Debug\PanelEdgeLengthAngle.dll Revit.SDK.Samples.PanelEdgeLengthAngle.CS.SetLengthAngleParams Geometry @@ -875,7 +875,7 @@ Points Along Parabola Points Along Parabola LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll Revit.SDK.Samples.PointCurveCreation.CS.PointsParabola Geometry @@ -883,7 +883,7 @@ Points On Curve Points On Curve LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll Revit.SDK.Samples.PointCurveCreation.CS.PointsOnCurve Geometry @@ -891,7 +891,7 @@ Points From Excel Points From Excel LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll Revit.SDK.Samples.PointCurveCreation.CS.PointsFromExcel Geometry @@ -899,7 +899,7 @@ Points From Text File Points From Text File LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll Revit.SDK.Samples.PointCurveCreation.CS.PointsFromTextFile Geometry @@ -907,7 +907,7 @@ Curve - Sine Curve - Sine LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll Revit.SDK.Samples.PointCurveCreation.CS.SineCurve Geometry @@ -915,7 +915,7 @@ Curve - Catenary Curve - Catenary LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll Revit.SDK.Samples.PointCurveCreation.CS.CatenaryCurve Geometry @@ -923,7 +923,7 @@ Surface - Cyclic Surface - Cyclic LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\PointCurveCreation\CS\bin\Debug\PointCurveCreation.dll Revit.SDK.Samples.PointCurveCreation.CS.CyclicSurface Geometry @@ -931,7 +931,7 @@ Material Quantities Material Quantities LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\MaterialQuantities\CS\bin\Debug\MaterialQuantities.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMaterialQuantities\CS\bin\Debug\MaterialQuantities.dll Revit.Samples.MaterialQuantities.Command Geometry @@ -939,7 +939,7 @@ AddPredefinedInstance - Point Cloud Engine Add predefined instance LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PointCloudEngine\CS\bin\Debug\PointCloudEngine.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPointCloudEngine\CS\bin\Debug\PointCloudEngine.dll Revit.SDK.Samples.CS.PointCloudEngine.AddPredefinedInstanceCommand Geometry @@ -947,7 +947,7 @@ Add randomized instance - Point Cloud Engine Add randomized instance LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PointCloudEngine\CS\bin\Debug\PointCloudEngine.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPointCloudEngine\CS\bin\Debug\PointCloudEngine.dll Revit.SDK.Samples.CS.PointCloudEngine.AddRandomizedInstanceCommand Geometry @@ -955,7 +955,7 @@ Add randomized instance at transform - Point Cloud Engine Add randomized instance at transform LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PointCloudEngine\CS\bin\Debug\PointCloudEngine.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPointCloudEngine\CS\bin\Debug\PointCloudEngine.dll Revit.SDK.Samples.CS.PointCloudEngine.AddTransformedInstanceCommand Geometry @@ -963,7 +963,7 @@ Serialize point cloud (utility) - Point Cloud Engine Serialize point cloud (utility) LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PointCloudEngine\CS\bin\Debug\PointCloudEngine.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPointCloudEngine\CS\bin\Debug\PointCloudEngine.dll Revit.SDK.Samples.CS.PointCloudEngine.SerializePredefinedPointCloud Geometry @@ -971,7 +971,7 @@ SolidSolidCut-Cut "Let the sphere cut the cube" LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SolidSolidCut\CS\bin\Debug\SolidSolidCut.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSolidSolidCut\CS\bin\Debug\SolidSolidCut.dll Revit.SDK.Samples.SolidSolidCut.CS.Cut Geometry @@ -979,7 +979,7 @@ SolidSolidCut-Uncut "Remove the cutting relationship between the sphere and the cube" LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SolidSolidCut\CS\bin\Debug\SolidSolidCut.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSolidSolidCut\CS\bin\Debug\SolidSolidCut.dll Revit.SDK.Samples.SolidSolidCut.CS.Uncut Geometry @@ -987,7 +987,7 @@ Analytical Viewer Display analytical model of one or more selected elements. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Viewers\AnalyticalViewer\VB.NET\bin\AnalyticalViewer.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesViewers\AnalyticalViewer\VB.NET\bin\AnalyticalViewer.dll Revit.SDK.Samples.AnalyticalViewer.VB.NET.AnalyticalViewer Geometry @@ -995,7 +995,7 @@ Element Viewer Display wireframe model of one or more selected elements. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Viewers\ElementViewer\VB.NET\bin\debug\ElementViewer.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesViewers\ElementViewer\VB.NET\bin\debug\ElementViewer.dll Revit.SDK.Samples.ElementViewer.VB.NET.ElementViewer Geometry @@ -1003,7 +1003,7 @@ Revit Viewer View geometry information. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Viewers\RevitViewer\VB.NET\bin\RevitViewer.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesViewers\RevitViewer\VB.NET\bin\RevitViewer.dll Revit.SDK.Samples.RevitViewer.VB.NET.RevitViewer Geometry @@ -1011,7 +1011,7 @@ Room Viewer Wireframe viewer for the selected room. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Viewers\RoomViewer\VB.NET\bin\RoomViewer.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesViewers\RoomViewer\VB.NET\bin\RoomViewer.dll Revit.SDK.Samples.RoomViewer.VB.NET.RoomViewer Geometry, Structure @@ -1019,7 +1019,7 @@ NewPathReinforcement Create PathReinforcement on wall or slab. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\NewPathReinforcement\CS\bin\Debug\NewPathReinforcement.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesNewPathReinforcement\CS\bin\Debug\NewPathReinforcement.dll Revit.SDK.Samples.NewPathReinforcement.CS.Command Geometry, Structure @@ -1027,7 +1027,7 @@ Truss Create truss, edit profile and truss member of new created truss. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Truss\CS\bin\Debug\Truss.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTruss\CS\bin\Debug\Truss.dll Revit.SDK.Samples.Truss.CS.Command Massing @@ -1035,7 +1035,7 @@ Set Parameter Values From Image Data Set Parameter Values From Image Data LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Massing\ParameterValuesFromImage\CS\bin\Debug\ParameterValuesFromImage.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMassing\ParameterValuesFromImage\CS\bin\Debug\ParameterValuesFromImage.dll Revit.SDK.Samples.ParameterValuesFromImage.CS.SetParameterValueWithImageData Materials @@ -1043,7 +1043,7 @@ Edit appearance asset properties via a small control dialog This sample demonstrates basic usage of the AppearanceAssetEditScope and AssetProperty classes to change the value of an asset property in a given material. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AppearanceAssetEditing\CS\bin\Debug\AppearanceAssetEditing.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAppearanceAssetEditing\CS\bin\Debug\AppearanceAssetEditing.dll Revit.SDK.Samples.AppearanceAssetEditing.CS.Command Materials @@ -1051,7 +1051,7 @@ Material Properties (CS) Get the material physical properties of the selected beam, column or brace. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\MaterialProperties\CS\bin\Debug\MaterialProperties.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMaterialProperties\CS\bin\Debug\MaterialProperties.dll Revit.SDK.Samples.MaterialProperties.CS.MaterialProperties Materials, Parameters @@ -1059,7 +1059,7 @@ Physical Properties Dump Material Physical Parameters. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PhysicalProp\CS\bin\Debug\PhysicalProp.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPhysicalProp\CS\bin\Debug\PhysicalProp.dll Revit.SDK.Samples.PhysicalProp.CS.DumpMaterialPhysicalParameters MEP @@ -1067,7 +1067,7 @@ AutoRoute Route ducts and fittings. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AutoRoute\CS\bin\Debug\AutoRoute.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAutoRoute\CS\bin\Debug\AutoRoute.dll Revit.SDK.Samples.AutoRoute.CS.Command MEP @@ -1075,7 +1075,7 @@ AvoidObstruction Resolve the obstructions of pipe with pipe, pipe with beam and pipe with duct. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AvoidObstruction\CS\bin\Debug\AvoidObstruction.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAvoidObstruction\CS\bin\Debug\AvoidObstruction.dll Revit.SDK.Samples.AvoidObstruction.CS.Command MEP @@ -1083,7 +1083,7 @@ Fabrication Part Layout Fabrication Part Layout Sample LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.FabricationPartLayout MEP @@ -1091,7 +1091,7 @@ Optimize Straights Optimize Straights LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.OptimizeStraights MEP @@ -1099,7 +1099,7 @@ Stretch and Fit Stretch and fit LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.StretchAndFit MEP @@ -1107,7 +1107,7 @@ Convert To Fabrication Convert Design Elements To Fabrication Parts LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.ConvertToFabrication MEP @@ -1115,7 +1115,7 @@ Buttons and Group Exclusions Exclude Fabrication Service Buttons and Groups for Routing Operations LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.ButtonGroupExclusions MEP @@ -1123,7 +1123,7 @@ Ancillaries Discover the Ancillaries Associated with a Fabrication Part LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.Ancillaries MEP @@ -1131,7 +1131,7 @@ Get Custom Data Discover the Custom data Associated with a Fabrication Config and Part LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.GetCustomData MEP @@ -1139,7 +1139,7 @@ Set Custom Data Set Custom data Associated with a Fabrication Config to a Selected Part LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.SetCustomData MEP @@ -1147,7 +1147,7 @@ Export to PCF Exports fabrication parts to a PCF file LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.ExportToPCF MEP @@ -1155,7 +1155,7 @@ Export Part Geometry Exports fabrication part geometry to a CSV file LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.FabPartGeometry MEP @@ -1163,7 +1163,7 @@ Display Part Info Displays fabrication part information LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.PartInfo MEP @@ -1171,7 +1171,7 @@ Detach Hanger Rods Detaches hanger rods from their structural host LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.DetachRods MEP @@ -1179,7 +1179,7 @@ Double Rod Lengths Doubles the length of the picked hanger rods LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.DoubleRodLength MEP @@ -1187,7 +1187,7 @@ Halve Rod Lengths Halves the length of the picked hanger rods LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.HalveRodLength MEP @@ -1195,7 +1195,7 @@ Increase Rod Structure Extension Increase the length of the rod as an extension from its hosted structure (by 1ft) LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.IncreaseRodStructureExtension MEP @@ -1203,7 +1203,7 @@ Decrease Rod Structure Extension Decrease the length of the rod as an extension from its hosted structure (by 1ft) LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.DecreaseRodStructureExtension MEP @@ -1211,7 +1211,7 @@ Part Renumber Renumbers a selection of fabrication parts LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.PartRenumber MEP @@ -1219,7 +1219,7 @@ Split Straight Splits a fabrication part straight into two equal pieces LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.SplitStraight MEP @@ -1227,7 +1227,7 @@ Load and Place Next Item File Reloads the fabrication configuration and then iterates the item folders and finds the next unloaded item file and lets a user place it in the model LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.LoadAndPlaceNextItemFile MEP @@ -1235,7 +1235,7 @@ Unload Unused Item Files Unloads item files that are loaded but are not used in the model LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.UnloadUnusedItemFiles MEP @@ -1243,7 +1243,7 @@ Export to MAJ Export Fabrication Parts to a fabrication job (MAJ) file LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.ExportToMAJ MEP @@ -1251,7 +1251,7 @@ Change Service Change the service of a selection of Fabrication Parts LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.ChangeService MEP @@ -1259,7 +1259,7 @@ Change Size Change the size of a selection of Fabrication Parts LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.ChangeSize MEP @@ -1267,7 +1267,7 @@ Apply Change Apply change to the service and the size of a selection of Fabrication Parts LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFabricationPartLayout\CS\bin\Debug\FabricationPartLayout.dll Revit.SDK.Samples.FabricationPartLayout.CS.ApplyChange MEP @@ -1275,7 +1275,7 @@ Power Circuit Operate power circuits. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PowerCircuit\CS\bin\Debug\PowerCircuit.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPowerCircuit\CS\bin\Debug\PowerCircuit.dll Revit.SDK.Samples.PowerCircuit.CS.Command MEP @@ -1283,7 +1283,7 @@ RoutingPreferenceTools.Analyzer RoutingPreferenceTools.Analyzer LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RoutingPreferenceTools\CS\bin\Debug\RoutingPreferenceTools.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRoutingPreferenceTools\CS\bin\Debug\RoutingPreferenceTools.dll Revit.SDK.Samples.RoutingPreferenceTools.CS.Command MEP @@ -1291,7 +1291,7 @@ RoutingPreferenceTools.Builder.CommandReadPreferences RoutingPreferenceTools.Builder.CommandReadPreferences LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RoutingPreferenceTools\CS\bin\Debug\RoutingPreferenceTools.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRoutingPreferenceTools\CS\bin\Debug\RoutingPreferenceTools.dll Revit.SDK.Samples.RoutingPreferenceTools.CS.CommandReadPreferences MEP @@ -1299,7 +1299,7 @@ RoutingPreferenceTools.Builder.CommandWritePreferences RoutingPreferenceTools.Builder.CommandWritePreferences LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RoutingPreferenceTools\CS\bin\Debug\RoutingPreferenceTools.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRoutingPreferenceTools\CS\bin\Debug\RoutingPreferenceTools.dll Revit.SDK.Samples.RoutingPreferenceTools.CS.CommandWritePreferences MEP @@ -1307,7 +1307,7 @@ TraverseSystem Traverse a mechanical or piping system in the direction of flow LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\TraverseSystem\CS\bin\Debug\TraverseSystem.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTraverseSystem\CS\bin\Debug\TraverseSystem.dll Revit.SDK.Samples.TraverseSystem.CS.Command Parameters @@ -1315,7 +1315,7 @@ Beam and slab parameter Add a new GUID parameter to beam and slab, and use the GUID value to find the right element. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\BeamAndSlabNewParameter\CS\bin\Debug\BeamAndSlabNewParameter.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesBeamAndSlabNewParameter\CS\bin\Debug\BeamAndSlabNewParameter.dll Revit.SDK.Samples.BeamAndSlabNewParameter.CS.Command Parameters @@ -1323,7 +1323,7 @@ Browse Parameter Bindings Browse all the shared parameters bindings used in this project. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\BrowseBindings\VB.NET\bin\BrowseBindings.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesBrowseBindings\VB.NET\bin\BrowseBindings.dll Revit.SDK.Samples.BrowseBindings.VB.NET.Command Parameters @@ -1331,7 +1331,7 @@ CreateShared - Create Shared Parameter Create a new shared parameter and assign it to wall categories. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateShared\VB.NET\bin\Debug\CreateShared.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateShared\VB.NET\bin\Debug\CreateShared.dll Revit.SDK.Samples.CreateShared.VB.NET.Command1 Parameters @@ -1339,7 +1339,7 @@ CreateShared - Set Shared Parameter Set the shared parameter. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateShared\VB.NET\bin\Debug\CreateShared.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateShared\VB.NET\bin\Debug\CreateShared.dll Revit.SDK.Samples.CreateShared.VB.NET.Command2 Parameters @@ -1347,7 +1347,7 @@ Get Deck Properties Get deck layer properties. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DeckProperties\CS\bin\Debug\DeckProperties.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDeckProperties\CS\bin\Debug\DeckProperties.dll Revit.SDK.Samples.DeckProperties.CS.Command Parameters @@ -1355,7 +1355,7 @@ FireRating - Apply Parameter Add a new shared parameter to Revit and apply it to all doors. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FireRating\VB.NET\bin\FireRating.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFireRating\VB.NET\bin\FireRating.dll Revit.SDK.Samples.FireRating.VB.NET.ApplyParameter Parameters @@ -1363,7 +1363,7 @@ FireRating - Export to Excel Export fire rating values to an Excel file. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FireRating\VB.NET\bin\FireRating.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFireRating\VB.NET\bin\FireRating.dll Revit.SDK.Samples.FireRating.VB.NET.ExportFireRating Parameters @@ -1371,7 +1371,7 @@ FireRating - Import from Excel Import fire rating values from the Excel file and apply them to doors. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FireRating\VB.NET\bin\FireRating.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFireRating\VB.NET\bin\FireRating.dll Revit.SDK.Samples.FireRating.VB.NET.ImportFireRating Parameters @@ -1379,7 +1379,7 @@ Create shared parameters Create a visible and an invisible parameter. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\InvisibleParam\CS\bin\Debug\InvisibleParam.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesInvisibleParam\CS\bin\Debug\InvisibleParam.dll Revit.SDK.Samples.InvisibleParam.CS.Command Parameters @@ -1387,7 +1387,7 @@ Element Parameters Show the property information of selected element. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ParameterUtils\CS\bin\Debug\ParameterUtils.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesParameterUtils\CS\bin\Debug\ParameterUtils.dll Revit.SDK.Samples.ParameterUtils.CS.Command Parameters @@ -1395,7 +1395,7 @@ ReadonlySharedParameters1 ReadonlySharedParameters1 LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ReadonlySharedParameters\CS\bin\Debug\ReadonlySharedParameters.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesReadonlySharedParameters\CS\bin\Debug\ReadonlySharedParameters.dll Revit.SDK.Samples.ReadonlySharedParameters.CS.SetReadonlyCost1 Parameters @@ -1403,7 +1403,7 @@ ReadonlySharedParameters2 ReadonlySharedParameters2 LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ReadonlySharedParameters\CS\bin\Debug\ReadonlySharedParameters.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesReadonlySharedParameters\CS\bin\Debug\ReadonlySharedParameters.dll Revit.SDK.Samples.ReadonlySharedParameters.CS.SetReadonlyCost2 Parameters @@ -1411,7 +1411,7 @@ Test Floor Thickness Show how to retrieve and modify floor thickness. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\TestFloorThickness\VB.NET\bin\Debug\TestFloorThickness.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTestFloorThickness\VB.NET\bin\Debug\TestFloorThickness.dll Revit.SDK.Samples.TestFloorThickness.VB.NET.Command Parameters @@ -1419,7 +1419,7 @@ Test Wall Thickness Show how to retrieve and modify wall thickness. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\TestWallThickness\VB.NET\bin\Debug\TestWallThickness.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesTestWallThickness\VB.NET\bin\Debug\TestWallThickness.dll Revit.SDK.Samples.TestWallThickness.VB.NET.Command Parameters, Structure @@ -1427,7 +1427,7 @@ Create beams, columns and braces (CS) Create beams, columns and braces. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateBeamsColumnsBraces\CS\bin\Debug\CreateBeamsColumnsBraces.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateBeamsColumnsBraces\CS\bin\Debug\CreateBeamsColumnsBraces.dll Revit.SDK.Samples.CreateBeamsColumnsBraces.CS.Command Parameters, Views @@ -1435,7 +1435,7 @@ Create and configure new view template Demonstrates the process of creating a new view template from a regular view. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ViewTemplateCreation\CS\bin\Debug\ViewTemplateCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesViewTemplateCreation\CS\bin\Debug\ViewTemplateCreation.dll Revit.SDK.Samples.ViewTemplateCreation.CS.Command Rooms/Spaces @@ -1443,7 +1443,7 @@ Create zone and space Create space/zone elements and edit zone in Revit MEP. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AddSpaceAndZone\CS\bin\Debug\AddSpaceAndZone.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAddSpaceAndZone\CS\bin\Debug\AddSpaceAndZone.dll Revit.SDK.Samples.AddSpaceAndZone.CS.Command Rooms/Spaces @@ -1451,7 +1451,7 @@ Customize door opening expression Customize door opening expression based on geometry and your country standard. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DoorSwing\CS\bin\Debug\DoorSwing.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDoorSwing\CS\bin\Debug\DoorSwing.dll Revit.SDK.Samples.DoorSwing.CS.InitializeCommand Rooms/Spaces @@ -1459,7 +1459,7 @@ Update Door Properties Update Door Properties according to geometries. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DoorSwing\CS\bin\Debug\DoorSwing.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDoorSwing\CS\bin\Debug\DoorSwing.dll Revit.SDK.Samples.DoorSwing.CS.UpdateParamsCommand Rooms/Spaces @@ -1467,7 +1467,7 @@ Update Door Geometries Update door geometry according to From/To room property. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\DoorSwing\CS\bin\Debug\DoorSwing.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesDoorSwing\CS\bin\Debug\DoorSwing.dll Revit.SDK.Samples.DoorSwing.CS.UpdateGeometryCommand Rooms/Spaces @@ -1475,7 +1475,7 @@ Roofs Rooms (CS) Demonstrates how to check whether Room(Space) has bounding Roof. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RoofsRooms\CS\bin\Debug\RoofsRooms.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRoofsRooms\CS\bin\Debug\RoofsRooms.dll Revit.SDK.Samples.RoofsRooms.CS.Command Rooms/Spaces @@ -1483,7 +1483,7 @@ Rooms Get and set room information (Number, Tag, Area). LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Rooms\CS\bin\Debug\Rooms.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRooms\CS\bin\Debug\Rooms.dll Revit.SDK.Samples.Rooms.CS.Command Rooms/Spaces @@ -1491,7 +1491,7 @@ Room Schedule Room Schedule. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RoomSchedule\CS\bin\Debug\RoomSchedule.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRoomSchedule\CS\bin\Debug\RoomSchedule.dll Revit.SDK.Samples.RoomSchedule.Command Selection @@ -1499,7 +1499,7 @@ Pick for Deletion This command is to pick element and delete. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Selections\CS\bin\Debug\Selections.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSelections\CS\bin\Debug\Selections.dll Revit.SDK.Samples.Selections.CS.PickforDeletion Selection @@ -1507,7 +1507,7 @@ Place At Point On Wall Face This command is to pick a point on wall face and place a window. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Selections\CS\bin\Debug\Selections.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSelections\CS\bin\Debug\Selections.dll Revit.SDK.Samples.Selections.CS.PlaceAtPointOnWallFace Selection @@ -1515,7 +1515,7 @@ Place At Picked Face Work plane This command is to pick a face, set work plane, then pick a point to create a circle. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Selections\CS\bin\Debug\Selections.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSelections\CS\bin\Debug\Selections.dll Revit.SDK.Samples.Selections.CS.PlaceAtPickedFaceWorkplane Selection @@ -1523,7 +1523,7 @@ Selection Dialog This command is to pick a element and a point from dialog. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Selections\CS\bin\Debug\Selections.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSelections\CS\bin\Debug\Selections.dll Revit.SDK.Samples.Selections.CS.SelectionDialog Structure @@ -1531,7 +1531,7 @@ Analytical SupportData Information Displays the element's support information LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AnalyticalSupportData_Info\CS\bin\Debug\AnalyticalSupportData_Info.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAnalyticalSupportData_Info\CS\bin\Debug\AnalyticalSupportData_Info.dll Revit.SDK.Samples.AnalyticalSupportData_Info.CS.Command Structure @@ -1539,7 +1539,7 @@ AreaReinCurve Turn off all layers but one. You get some parallel bars. Remove the hooks from one boundary curve so that the bars have hooks only at the other end. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AreaReinCurve\CS\bin\Debug\AreaReinCurve.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAreaReinCurve\CS\bin\Debug\AreaReinCurve.dll Revit.SDK.Samples.AreaReinCurve.CS.Command Structure @@ -1547,7 +1547,7 @@ AreaReinParameters Show parameters of selected AreaReinforcement and allow user to modify LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AreaReinParameters\CS\bin\Debug\AreaReinParameters.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAreaReinParameters\CS\bin\Debug\AreaReinParameters.dll Revit.SDK.Samples.AreaReinParameters.CS.Command Structure @@ -1555,7 +1555,7 @@ RebarParameters Show all parameters of selected Rebar LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AreaReinParameters\CS\bin\Debug\AreaReinParameters.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAreaReinParameters\CS\bin\Debug\AreaReinParameters.dll Revit.SDK.Samples.AreaReinParameters.CS.RebarParas Structure @@ -1563,7 +1563,7 @@ Boundary Conditions Display the BoundaryConditions' parameters or create a new BoundaryConditions instance. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\BoundaryConditions\CS\bin\Debug\BoundaryConditions.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesBoundaryConditions\CS\bin\Debug\BoundaryConditions.dll Revit.SDK.Samples.BoundaryConditions.CS.Command Structure @@ -1571,7 +1571,7 @@ Create Beam System Create beam system according to the profile made of selected beams. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateBeamSystem\CS\bin\Debug\CreateBeamSystem.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateBeamSystem\CS\bin\Debug\CreateBeamSystem.dll Revit.SDK.Samples.CreateBeamSystem.CS.Command Structure @@ -1579,7 +1579,7 @@ Create Complex Area Reinforcement Create complex AreaReinforcement on selected slab. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateComplexAreaRein\CS\bin\Debug\CreateComplexAreaRein.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateComplexAreaRein\CS\bin\Debug\CreateComplexAreaRein.dll Revit.SDK.Samples.CreateComplexAreaRein.CS.Command Structure @@ -1587,7 +1587,7 @@ Create simple area reinforcement Create simple AreaReinforcement on selected wall or floor. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateSimpleAreaRein\CS\bin\Debug\CreateSimpleAreaRein.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateSimpleAreaRein\CS\bin\Debug\CreateSimpleAreaRein.dll Revit.SDK.Samples.CreateSimpleAreaRein.CS.Command Structure @@ -1595,7 +1595,7 @@ Create wall in beam profile Create a profiled wall using the outline generated by a selection of beams defining a vertical profile. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateWallinBeamProfile\CS\bin\Debug\CreateWallinBeamProfile.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateWallinBeamProfile\CS\bin\Debug\CreateWallinBeamProfile.dll Revit.SDK.Samples.CreateWallinBeamProfile.CS.CreateWallinBeamProfile Structure @@ -1603,7 +1603,7 @@ Create walls under beams Create simple rectangular walls along and under the path of selected beams. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateWallsUnderBeams\CS\bin\Debug\CreateWallsUnderBeams.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateWallsUnderBeams\CS\bin\Debug\CreateWallsUnderBeams.dll Revit.SDK.Samples.CreateWallsUnderBeams.CS.CreateWallsUnderBeams Structure @@ -1611,7 +1611,7 @@ Create Curved Beam Create Curved Beam. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CurvedBeam\CS\bin\Debug\CurvedBeam.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCurvedBeam\CS\bin\Debug\CurvedBeam.dll Revit.SDK.Samples.CurvedBeam.CS.Command Structure @@ -1619,7 +1619,7 @@ Frame Builder Add a new concrete column and beam size. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\FrameBuilder\CS\bin\Debug\FrameBuilder.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesFrameBuilder\CS\bin\Debug\FrameBuilder.dll Revit.SDK.Samples.FrameBuilder.CS.Command Structure @@ -1627,7 +1627,7 @@ Structural connection basic operations Shows how to perform basic operations on a structural connection. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\GenericStructuralConnection\CS\bin\Debug\GenericStructuralConnection.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesGenericStructuralConnection\CS\bin\Debug\GenericStructuralConnection.dll Revit.SDK.Samples.GenericStructuralConnection.CS.Command Structure @@ -1635,7 +1635,7 @@ Loads Show how to use load case, nature, usage and combination. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Loads\CS\bin\Debug\Loads.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesLoads\CS\bin\Debug\Loads.dll Revit.SDK.Samples.Loads.CS.Loads Structure @@ -1643,7 +1643,7 @@ Multiplanar Rebar Demonstrates how to create multiplanar rebar. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\MultiplanarRebar\CS\bin\Debug\MultiplanarRebar.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesMultiplanarRebar\CS\bin\Debug\MultiplanarRebar.dll Revit.SDK.Samples.MultiplanarRebar.CS.Command Structure @@ -1651,7 +1651,7 @@ NewRebar Create a rebar on the selected concrete rectangular column or beam. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\NewRebar\CS\bin\Debug\NewRebar.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesNewRebar\CS\bin\Debug\NewRebar.dll Revit.SDK.Samples.NewRebar.CS.Command Structure @@ -1659,7 +1659,7 @@ PathReinforcement Display path reinforcement properties. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\PathReinforcement\CS\bin\Debug\PathReinforcement.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesPathReinforcement\CS\bin\Debug\PathReinforcement.dll Revit.SDK.Samples.PathReinforcement.CS.Command Structure @@ -1667,7 +1667,7 @@ RebarContainerAnyShapeType Create Rebar Container in a selected concrete element (beam or column) that does not have any reinforcement. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RebarContainerAnyShapeType\CS\bin\Debug\RebarContainerAnyShapeType.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRebarContainerAnyShapeType\CS\bin\Debug\RebarContainerAnyShapeType.dll Revit.SDK.Samples.RebarContainerAnyShapeType.CS.Command Structure @@ -1675,7 +1675,7 @@ Rebar Free Form External command to create a Rebar FreeForm element and external application to implement the custom server used to regenerate the rebar geometry based on constraints LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\RebarFreeForm\CS\bin\Debug\RebarFreeForm.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesRebarFreeForm\CS\bin\Debug\RebarFreeForm.dll Revit.SDK.Samples.RebarFreeForm.CS.Command Structure @@ -1683,7 +1683,7 @@ Reinforcement Create bar set in a selected concrete element (beam or column) that does not have any reinforcement. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\Reinforcement\CS\bin\Debug\Reinforcement.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesReinforcement\CS\bin\Debug\Reinforcement.dll Revit.SDK.Samples.Reinforcement.CS.Command Structure @@ -1691,7 +1691,7 @@ Add elements to connection Add elements to existing structural connection LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.AddElementsToConnection.CS.Command Structure @@ -1699,7 +1699,7 @@ Add elements to custom connection Add elements to existing custom connection LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.AddElementsToCustomConnection.CS.Command Structure @@ -1707,7 +1707,7 @@ Create anchor pattern Create anchor pattern LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreateAnchorPattern.CS.Command Structure @@ -1715,7 +1715,7 @@ Create bolt pattern Create bolt pattern LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreateBoltPattern.CS.Command Structure @@ -1723,7 +1723,7 @@ Create contour cut Create contour cut LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreateContourCut.CS.Command Structure @@ -1731,7 +1731,7 @@ Create cope skewed Create cope skewed LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreateCopeSkewed.CS.Command Structure @@ -1739,7 +1739,7 @@ Create corner cut Create corner cut LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreateCornerCut.CS.Command Structure @@ -1747,7 +1747,7 @@ Create plate Create plate LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreatePlate.CS.Command Structure @@ -1755,7 +1755,7 @@ Create plate hole Create plate hole LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreatePlateHole.CS.Command Structure @@ -1763,7 +1763,7 @@ Create shear stud pattern Create shear stud pattern LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreateShearStudPattern.CS.Command Structure @@ -1771,7 +1771,7 @@ Create shortening Create shortening LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreateShortening.CS.Command Structure @@ -1779,7 +1779,7 @@ Create weld point Create weld point LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.CreateWeldPoint.CS.Command Structure @@ -1787,7 +1787,7 @@ Delete connection Delete connection LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.DeleteConnection.CS.Command Structure @@ -1795,7 +1795,7 @@ Remove elements from structural connection Remove elements from structural connection LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.RemoveElementsFromConnection.CS.Command Structure @@ -1803,7 +1803,7 @@ Remove subelements from custom connection Remove subelements from custom connection LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.RemoveSubelementsFromCustomConnection.CS.Command Structure @@ -1811,7 +1811,7 @@ Print connection detailed parameters Print connection detailed parameters LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.UpdateConnectionDetailedParameters.CS.Command Structure @@ -1819,7 +1819,7 @@ Fabrication transaction and background calculation Shows how to handle "Background calculation in progress" exception when trying to start fabrication transaction LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\SampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesSampleCommandsSteelElements\CS\bin\Debug\SampleCommandsSteelElements.dll Revit.SDK.Samples.SampleCommandsSteelElements.BackgroundCalculation.CS.Command Structure @@ -1827,7 +1827,7 @@ StructSample - Frame Wall Add columns to the selected walls. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\StructSample\CS\bin\Debug\StructSample.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesStructSample\CS\bin\Debug\StructSample.dll Revit.SDK.Samples.StructSample.CS.Command Structure @@ -1835,7 +1835,7 @@ Structural Layer Function (CS) For the selected floor, display the function of each structural layer from outside to inside in a dialog box. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\StructuralLayerFunction\CS\bin\Debug\StructuralLayerFunction.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesStructuralLayerFunction\CS\bin\Debug\StructuralLayerFunction.dll Revit.SDK.Samples.StructuralLayerFunction.CS.Command Views @@ -1843,7 +1843,7 @@ All Views Generate a new sheet for user selected views LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\AllViews\CS\bin\Debug\AllViews.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesAllViews\CS\bin\Debug\AllViews.dll Revit.SDK.Samples.AllViews.CS.Command Views @@ -1851,7 +1851,7 @@ Create view section Create a section view across the mid point of the selected wall, floor or beam LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateViewSection\CS\bin\Debug\CreateViewSection.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateViewSection\CS\bin\Debug\CreateViewSection.dll Revit.SDK.Samples.CreateViewSection.CS.Command Views @@ -1859,7 +1859,7 @@ Create drafting view Create a new empty drafting view LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\CreateViewSection\CS\bin\Debug\CreateViewSection.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesCreateViewSection\CS\bin\Debug\CreateViewSection.dll Revit.SDK.Samples.CreateViewSection.CS.CreateDraftingView Views @@ -1867,7 +1867,7 @@ Object Viewer Display the selected element in a preview window and generic properties in a grid. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ObjectViewer\CS\bin\Debug\ObjectViewer.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesObjectViewer\CS\bin\Debug\ObjectViewer.dll Revit.SDK.Samples.ObjectViewer.CS.Command Views @@ -1875,7 +1875,7 @@ ScheduleAPI This sample introduces how to create a view schedule and how to show its data on a sheet. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\ScheduleCreation\CS\bin\Debug\ScheduleCreation.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesScheduleCreation\CS\bin\Debug\ScheduleCreation.dll Revit.SDK.Samples.ScheduleCreation.CS.Command Views @@ -1883,8 +1883,8 @@ Visibility Controller Control element visibility by category. LargeImage: Image: -C:\a\lib\revit\2020\SDK\Samples\VisibilityControl\CS\bin\Debug\VisibilityControl.dll +Y:\a\src\rvt\RevitSdkSamples\SDK\SamplesVisibilityControl\CS\bin\Debug\VisibilityControl.dll Revit.SDK.Samples.VisibilityControl.CS.Command -#include C:/a/vs/AdnRevitApiLabsXtra/AdnSamples.txt -#include C:/a/vs/the_building_coder_samples/BcSamples.txt +##include C:/a/vs/AdnRevitApiLabsXtra/AdnSamples.txt +#include Y:\a\src\rvt\the_building_coder_samples\BcSamples.txt