/// <summary>
 /// Initializes a new instance of the <see cref="UserDefinedTemplate" /> class.
 /// </summary>
 /// <param name="materialType">Type of the material.</param>
 /// <param name="region">The region.</param>
 /// <param name="standard">The material standard.</param>
 /// <param name="grade">The material grade.</param>
 public UserDefinedTemplate(
     eMaterialPropertyType materialType,
     eMaterialRegion region,
     string standard,
     string grade) : base(materialType, region, standard, grade)
 {
 }
Exemplo n.º 2
0
 public void GetMaterial(string name,
                         ref eMaterialPropertyType materialType,
                         ref int color,
                         ref string notes,
                         ref string GUID)
 {
 }
Exemplo n.º 3
0
 public void SetMaterial(string name,
                         eMaterialPropertyType materialType,
                         int color    = -1,
                         string notes = "",
                         string GUID  = "")
 {
 }
Exemplo n.º 4
0
 public void AddMaterial(ref string name,
                         eMaterialPropertyType materialType,
                         string region,
                         string standardName,
                         string grade,
                         string userName = "")
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MaterialTemplate" /> class.
 /// </summary>
 /// <param name="materialType">Type of material.</param>
 /// <param name="region">The region.</param>
 /// <param name="standard">The material standard.</param>
 /// <param name="grade">The material grade.</param>
 protected MaterialTemplate(
     eMaterialPropertyType materialType,
     eMaterialRegion region,
     string standard,
     string grade)
 {
     MaterialType = materialType;
     Region       = region;
     Standard     = standard;
     Grade        = grade;
 }
Exemplo n.º 6
0
 public void GetMaterialType(string name,
                             ref eMaterialPropertyType materialType,
                             ref eMaterialSymmetryType symmetryType)
 {
 }
Exemplo n.º 7
0
 // eMaterialPropertyType
 internal static CSiProgram.eMatType ToCSi(eMaterialPropertyType enumValue)
 {
     return((CSiProgram.eMatType)enumValue);
 }