Buckets:
| // | |
| // (C) Copyright 2003-2016 by Autodesk, Inc. | |
| // | |
| // Permission to use, copy, modify, and distribute this software in | |
| // object code form for any purpose and without fee is hereby granted, | |
| // provided that the above copyright notice appears in all copies and | |
| // that both that copyright notice and the limited warranty and | |
| // restricted rights notice below appear in all supporting | |
| // documentation. | |
| // | |
| // AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS. | |
| // AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF | |
| // MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC. | |
| // DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE | |
| // UNINTERRUPTED OR ERROR FREE. | |
| // | |
| // Use, duplication, or disclosure by the U.S. Government is subject to | |
| // restrictions set forth in FAR 52.227-19 (Commercial Computer | |
| // Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii) | |
| // (Rights in Technical Data and Computer Software), as applicable. | |
| // | |
| using System; | |
| using System.Windows.Forms; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using Autodesk.Revit; | |
| using Autodesk.Revit.DB; | |
| using Autodesk.Revit.UI; | |
| using TaskDialog = Autodesk.Revit.UI.TaskDialog; | |
| namespace Revit.SDK.Samples.Custom2DExporter.CS | |
| { | |
| /// <summary> | |
| /// Implements the Revit add-in interface IExternalCommand | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public class Command : IExternalCommand | |
| { | |
| /// <summary> | |
| /// Generates the list of view types supported by the Exporter. | |
| /// </summary> | |
| /// <returns>List of types that are valid view types for export. </returns> | |
| public static ICollection<ViewType> GetExportableViewTypes() | |
| { | |
| return new ViewType[] | |
| { | |
| ViewType.FloorPlan, | |
| ViewType.CeilingPlan, | |
| ViewType.Section, | |
| ViewType.Elevation, | |
| ViewType.Detail, | |
| ViewType.AreaPlan, | |
| ViewType.EngineeringPlan | |
| }; | |
| } | |
| bool isExportableView(Autodesk.Revit.DB.View view) | |
| { | |
| if (!view.CanBePrinted || view.IsTemplate) | |
| return false; | |
| ICollection<ViewType> exportableTypes = GetExportableViewTypes(); | |
| if (!exportableTypes.Contains(view.ViewType)) | |
| return false; | |
| return true; | |
| } | |
| private static void ExportView(Autodesk.Revit.DB.View exportableView, | |
| DisplayStyle displayStyle, | |
| bool includeGeometricObjects, | |
| bool export2DIncludingAnnotationObjects, | |
| bool export2DGeometricObjectsIncludingPatternLines, | |
| out IList<XYZ> points, | |
| out ResultsSummary resultsSummary) | |
| { | |
| TessellatedGeomAndText2DExportContext context = new TessellatedGeomAndText2DExportContext(out points); | |
| CustomExporter exporter = new CustomExporter(exportableView.Document, context); | |
| exporter.IncludeGeometricObjects = includeGeometricObjects; | |
| exporter.Export2DIncludingAnnotationObjects = export2DIncludingAnnotationObjects; | |
| exporter.Export2DGeometricObjectsIncludingPatternLines = export2DGeometricObjectsIncludingPatternLines; | |
| exporter.ShouldStopOnError = true; | |
| exporter.Export(exportableView); | |
| exporter.Dispose(); | |
| resultsSummary = new ResultsSummary(); | |
| resultsSummary.numElements = context.NumElements; | |
| resultsSummary.numTexts = context.NumTexts; | |
| resultsSummary.texts = context.Texts; | |
| } | |
| /// <summary> | |
| /// Class that aggregates the results of the export. | |
| /// </summary> | |
| class ResultsSummary | |
| { | |
| public int numElements { get; set; } | |
| public int numTexts { get; set; } | |
| public string texts { get; set; } | |
| public ResultsSummary() | |
| { | |
| } | |
| } | |
| /// <summary> | |
| /// Displays the results from a run of path of travel creation using a TaskDialog. | |
| /// </summary> | |
| /// <param name="resultsSummary"></param> | |
| private static void ShowResults(ResultsSummary resultsSummary) | |
| { | |
| TaskDialog td = new TaskDialog("Results of 2D export"); | |
| td.MainInstruction = String.Format("2D exporter exported {0} elements", resultsSummary.numElements); | |
| String details = String.Format("There were {0} text nodes exported.\n\n", | |
| resultsSummary.numTexts); | |
| if (resultsSummary.numTexts > 0 && resultsSummary.texts.Length > 0) | |
| details += "Exported text nodes:\n" + resultsSummary.texts; | |
| td.MainContent = details; | |
| td.Show(); | |
| } | |
| /// <summary> | |
| /// Implement this method as an external command for Revit. | |
| /// </summary> | |
| /// <param name="commandData">An object that is passed to the external application | |
| /// which contains data related to the command, | |
| /// such as the application object and active view.</param> | |
| /// <param name="message">A message that can be set by the external application | |
| /// which will be displayed if a failure or cancellation is returned by | |
| /// the external command.</param> | |
| /// <param name="elements">A set of elements to which the external application | |
| /// can add elements that are to be highlighted in case of failure or cancellation.</param> | |
| /// <returns>Return the status of the external command. | |
| /// A result of Succeeded means that the API external method functioned as expected. | |
| /// Cancelled can be used to signify that the user cancelled the external operation | |
| /// at some point. Failure should be returned if the application is unable to proceed with | |
| /// the operation.</returns> | |
| public virtual Result Execute(ExternalCommandData commandData | |
| , ref string message, ElementSet elements) | |
| { | |
| try | |
| { | |
| UIDocument uiDoc = commandData.Application.ActiveUIDocument; | |
| Autodesk.Revit.DB.View activeView = uiDoc.ActiveView; | |
| if (!isExportableView(activeView)) | |
| { | |
| TaskDialog td = new TaskDialog("Cannot export view."); | |
| td.MainInstruction = String.Format("Only plans, elevations and sections can be exported."); | |
| td.Show(); | |
| return Result.Succeeded; | |
| } | |
| using (Export2DView exportForm = new Export2DView()) | |
| { | |
| if (DialogResult.OK == exportForm.ShowDialog()) | |
| { | |
| IList<XYZ> points = null; | |
| ResultsSummary resSummary = null; | |
| ExportView(activeView, | |
| activeView.DisplayStyle /*display with current display style*/, | |
| true /* always export some geometry */, | |
| exportForm.ViewExportOptions.ExportAnnotationObjects, | |
| exportForm.ViewExportOptions.ExportPatternLines, | |
| out points, | |
| out resSummary); | |
| Utilities.displayExport(activeView, points); | |
| ShowResults(resSummary); | |
| } | |
| } | |
| return Result.Succeeded; | |
| } | |
| catch (Exception ex) | |
| { | |
| message = ex.Message; | |
| return Result.Failed; | |
| } | |
| } | |
| } | |
| } | |
Xet Storage Details
- Size:
- 8.04 kB
- Xet hash:
- 5d3eb76edf44d6f62eacb7b836f02a432f7f9c1de2579fa46dd74493f8190e31
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.