diff --git a/BuildingCoder/BuildingCoder/JtPairPicker.cs b/BuildingCoder/BuildingCoder/JtPairPicker.cs index 1c8f4b43..5585159b 100644 --- a/BuildingCoder/BuildingCoder/JtPairPicker.cs +++ b/BuildingCoder/BuildingCoder/JtPairPicker.cs @@ -54,6 +54,9 @@ public JtPairPicker( UIDocument uidoc ) _doc = _uidoc.Document; } + /// + /// Return selection result. + /// public IList Selected { get @@ -62,9 +65,13 @@ public IList Selected } } + /// + /// Run the automatic or interactive + /// selection process. + /// public Result Pick() { - // Select all T elements in the entire model. + // Retrieve all T elements in the entire model. _a = new List( new FilteredElementCollector( _doc ) diff --git a/BuildingCoder/BuildingCoder/Properties/AssemblyInfo.cs b/BuildingCoder/BuildingCoder/Properties/AssemblyInfo.cs index 7a769651..1ca5129b 100644 --- a/BuildingCoder/BuildingCoder/Properties/AssemblyInfo.cs +++ b/BuildingCoder/BuildingCoder/Properties/AssemblyInfo.cs @@ -52,7 +52,7 @@ // 2014-10-11 2015.0.115.0 implemented CmdNewCrossFitting // 2014-10-11 2015.0.115.1 fixed some of the warnings about deprecated use of Selection.Elements collection // 2014-11-10 2015.0.115.2 converted CmdNewSweptBlend to use manual transaction mode and implemented CreateNewSweptBlendArc -// 2014-11-10 2015.0.116.0 implemented CmdDimensionInstanceOrigin +// 2014-11-10 2015.0.116.0 implemented CmdDimensionInstanceOrigin and JtPairPicker // [assembly: AssemblyVersion( "2015.0.116.0" )] [assembly: AssemblyFileVersion( "2015.0.116.0" )]