Class DatumReferenceValue
Represents datum reference, a theoretically exact point, axis, or plane from which you make measurements and verify dimensions.
Inheritance
System.Object
DatumReferenceValue
Implements
System.ICloneable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: netDxf.Entities
Assembly: CADability.dll
Syntax
public class DatumReferenceValue : ICloneable
Constructors
| Improve this Doc View SourceDatumReferenceValue()
Initializes a new instance of the DatumReferenceValue class.
Declaration
public DatumReferenceValue()
DatumReferenceValue(String, ToleranceMaterialCondition)
Initializes a new instance of the DatumReferenceValue class.
Declaration
public DatumReferenceValue(string value, ToleranceMaterialCondition materialCondition)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | value | Datum reference value. |
| ToleranceMaterialCondition | materialCondition | Datum material condition. |
Properties
| Improve this Doc View SourceMaterialCondition
Gets or sets the datum material condition.
Declaration
public ToleranceMaterialCondition MaterialCondition { get; set; }
Property Value
| Type | Description |
|---|---|
| ToleranceMaterialCondition |
Value
Gets or sets the datum value.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
| Improve this Doc View SourceClone()
Creates a new DatumReferenceValue that is a copy of the current instance.
Declaration
public object Clone()
Returns
| Type | Description |
|---|---|
| System.Object | A new DatumReferenceValue that is a copy of this instance. |
Implements
System.ICloneable