mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-08-06 05:01:35 +00:00
189 lines
5.8 KiB
C#
189 lines
5.8 KiB
C#
//
|
|
// (C) Copyright 2003-2019 by Autodesk, Inc. All rights reserved.
|
|
//
|
|
// 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 ITS 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.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Autodesk.Revit.DB;
|
|
using Autodesk.Revit.UI;
|
|
using Autodesk.Revit.DB.ExtensibleStorage;
|
|
using System.Xml.Serialization;
|
|
using System.Runtime.Serialization;
|
|
using System.IO;
|
|
using System.ComponentModel;
|
|
|
|
namespace SchemaWrapperTools
|
|
{
|
|
/// <summary>
|
|
/// A class to store a list of FieldData objects as well as the top level data (name, access levels, SchemaId, etc..)
|
|
/// of an Autodesk.Revit.DB.ExtensibleStorage.Schema
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SchemaDataWrapper
|
|
{
|
|
#region Constructors
|
|
/// <summary>
|
|
/// For serialization only -- Do not use.
|
|
/// </summary>
|
|
internal SchemaDataWrapper() { }
|
|
|
|
/// <summary>
|
|
/// Create a new SchemaDataWrapper
|
|
/// </summary>
|
|
/// <param name="schemaId">The Guid of the Schema</param>
|
|
/// <param name="readAccess">The access level for read permission</param>
|
|
/// <param name="writeAccess">The access level for write permission</param>
|
|
/// <param name="vendorId">The user-registered vendor ID string</param>
|
|
/// <param name="applicationId">The application ID from the application manifest</param>
|
|
/// <param name="name">The name of the schema</param>
|
|
/// <param name="documentation">Descriptive details on the schema</param>
|
|
public SchemaDataWrapper(Guid schemaId, AccessLevel readAccess, AccessLevel writeAccess, string vendorId, string applicationId, string name, string documentation)
|
|
{
|
|
DataList = new System.Collections.Generic.List<FieldData >();
|
|
SchemaId = schemaId.ToString();
|
|
ReadAccess = readAccess;
|
|
WriteAccess = writeAccess;
|
|
VendorId = vendorId;
|
|
ApplicationId = applicationId;
|
|
Name = name;
|
|
Documentation = documentation;
|
|
}
|
|
#endregion
|
|
|
|
#region Data addition
|
|
/// <summary>
|
|
/// Adds a new field to the wrapper's list of fields.
|
|
/// </summary>
|
|
/// <param name="name">the name of the field</param>
|
|
/// <param name="typeIn">the data type of the field</param>
|
|
/// <param name="spec">The unit type of the Field (set to UT_Undefined for non-floating point types</param>
|
|
/// <param name="subSchema">The SchemaWrapper of the field's subSchema, if the field is of type "Entity"</param>
|
|
public void AddData(string name, System.Type typeIn, ForgeTypeId spec, SchemaWrapper subSchema)
|
|
{
|
|
m_DataList.Add(new FieldData(name, typeIn.FullName, spec.TypeId, subSchema));
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
/// <summary>
|
|
/// The list of FieldData objects in the wrapper
|
|
/// </summary>
|
|
public List<FieldData> DataList
|
|
{
|
|
get { return m_DataList; }
|
|
set { m_DataList = value; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// The schemaId Guid of the Schema
|
|
/// </summary>
|
|
public string SchemaId
|
|
{
|
|
get { return m_schemaId; }
|
|
set { m_schemaId = value; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// The read access of the Schema
|
|
/// </summary>
|
|
public AccessLevel ReadAccess
|
|
{
|
|
get { return m_ReadAccess; }
|
|
set { m_ReadAccess = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The write access of the Schema
|
|
/// </summary>
|
|
public AccessLevel WriteAccess
|
|
{
|
|
get { return m_WriteAccess; }
|
|
set { m_WriteAccess = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Vendor Id
|
|
/// </summary>
|
|
public string VendorId
|
|
{
|
|
get { return m_vendorId; }
|
|
set
|
|
{
|
|
m_vendorId = value;
|
|
}
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Application Id
|
|
/// </summary>
|
|
public string ApplicationId
|
|
{
|
|
get { return m_applicationId; }
|
|
set { m_applicationId = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The documentation string for the schema
|
|
/// </summary>
|
|
public string Documentation
|
|
{
|
|
get { return m_Documentation; }
|
|
set
|
|
{
|
|
m_Documentation = value;
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// The name of the schema
|
|
/// </summary>
|
|
public string Name
|
|
{
|
|
get { return m_Name; }
|
|
set
|
|
{
|
|
m_Name = value;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Data
|
|
private AccessLevel m_ReadAccess;
|
|
private AccessLevel m_WriteAccess;
|
|
private System.Collections.Generic.List<FieldData> m_DataList;
|
|
private string m_applicationId;
|
|
private string m_schemaId;
|
|
private string m_vendorId;
|
|
private string m_Name;
|
|
private string m_Documentation;
|
|
#endregion
|
|
|
|
}
|
|
}
|