GeometrySettings
class GeometrySettings
using Autodesk.DesignScript.Runtime;
using System.ComponentModel;
namespace Autodesk.DesignScript.Geometry
{
[Category("Configuration")]
internal class GeometrySettings
{
public static string RootModulePath { get; set; }
[SupressImportIntoVM]
public static bool GeometryXmlProperties { get; set; }
[SupressImportIntoVM]
public static string GeometryFactoryFilePath { get; set; }
[SupressImportIntoVM]
public static string PersistenceManagerFilePath { get; set; }
static GeometrySettings()
{
Reset();
}
private GeometrySettings()
{
}
internal static void Reset()
{
RootModulePath = string.Empty;
GeometryXmlProperties = false;
}
}
}