Show / Hide Table of Contents

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 Source

ToleranceEntry()

Initializes a new instance of the ToleranceEntry class.

Declaration
public ToleranceEntry()

Properties

| Improve this Doc View Source

Datum1

Gets or sets the first datum reference value.

Declaration
public DatumReferenceValue Datum1 { get; set; }
Property Value
Type Description
DatumReferenceValue
| Improve this Doc View Source

Datum2

Gets or sets the second datum reference value.

Declaration
public DatumReferenceValue Datum2 { get; set; }
Property Value
Type Description
DatumReferenceValue
| Improve this Doc View Source

Datum3

Gets or sets the third datum reference value.

Declaration
public DatumReferenceValue Datum3 { get; set; }
Property Value
Type Description
DatumReferenceValue
| Improve this Doc View Source

GeometricSymbol

Gets or sets the geometric characteristics symbol.

Declaration
public ToleranceGeometricSymbol GeometricSymbol { get; set; }
Property Value
Type Description
ToleranceGeometricSymbol
| Improve this Doc View Source

Tolerance1

Gets or sets the first tolerance value.

Declaration
public ToleranceValue Tolerance1 { get; set; }
Property Value
Type Description
ToleranceValue
| Improve this Doc View Source

Tolerance2

Gets or sets the second tolerance value.

Declaration
public ToleranceValue Tolerance2 { get; set; }
Property Value
Type Description
ToleranceValue

Methods

| Improve this Doc View Source

Clone()

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
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX