Class ToleranceEntry
Represents an entry in a tolerance entity.
Inheritance
System.Object
ToleranceEntry
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 ToleranceEntry : ICloneable
Remarks
Each entry can be made of up to two tolerance values and three datum references, plus a symbol that represents the geometric characteristics.
Constructors
| Improve this Doc View SourceToleranceEntry()
Initializes a new instance of the ToleranceEntry class.
Declaration
public ToleranceEntry()
Properties
| Improve this Doc View SourceDatum1
Gets or sets the first datum reference value.
Declaration
public DatumReferenceValue Datum1 { get; set; }
Property Value
| Type | Description |
|---|---|
| DatumReferenceValue |
Datum2
Gets or sets the second datum reference value.
Declaration
public DatumReferenceValue Datum2 { get; set; }
Property Value
| Type | Description |
|---|---|
| DatumReferenceValue |
Datum3
Gets or sets the third datum reference value.
Declaration
public DatumReferenceValue Datum3 { get; set; }
Property Value
| Type | Description |
|---|---|
| DatumReferenceValue |
GeometricSymbol
Gets or sets the geometric characteristics symbol.
Declaration
public ToleranceGeometricSymbol GeometricSymbol { get; set; }
Property Value
| Type | Description |
|---|---|
| ToleranceGeometricSymbol |
Tolerance1
Gets or sets the first tolerance value.
Declaration
public ToleranceValue Tolerance1 { get; set; }
Property Value
| Type | Description |
|---|---|
| ToleranceValue |
Tolerance2
Gets or sets the second tolerance value.
Declaration
public ToleranceValue Tolerance2 { get; set; }
Property Value
| Type | Description |
|---|---|
| ToleranceValue |
Methods
| Improve this Doc View SourceClone()
Creates a new ToleranceEntry that is a copy of the current instance.
Declaration
public object Clone()
Returns
| Type | Description |
|---|---|
| System.Object | A new ToleranceEntry that is a copy of this instance. |
Implements
System.ICloneable