Show / Hide Table of Contents

Class ToleranceValue

Represents a tolerance, indicates the amount by which the geometric characteristic can deviate from a perfect form.

Inheritance
System.Object
ToleranceValue
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 ToleranceValue : ICloneable

Constructors

| Improve this Doc View Source

ToleranceValue()

Initializes a new instance of the ToleranceValue class.

Declaration
public ToleranceValue()
| Improve this Doc View Source

ToleranceValue(Boolean, String, ToleranceMaterialCondition)

Initializes a new instance of the ToleranceValue class.

Declaration
public ToleranceValue(bool showDiameterSymbol, string value, ToleranceMaterialCondition materialCondition)
Parameters
Type Name Description
System.Boolean showDiameterSymbol

Show a diameter symbol before the tolerance value.

System.String value

Tolerance value.

ToleranceMaterialCondition materialCondition

Tolerance material condition.

Properties

| Improve this Doc View Source

MaterialCondition

Gets or sets the tolerance material condition.

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

ShowDiameterSymbol

Gets or sets if the tolerance diameter symbol will be shown.

Declaration
public bool ShowDiameterSymbol { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Value

Gets or sets the tolerance value.

Declaration
public string Value { get; set; }
Property Value
Type Description
System.String

Methods

| Improve this Doc View Source

Clone()

Creates a new ToleranceValue that is a copy of the current instance.

Declaration
public object Clone()
Returns
Type Description
System.Object

A new ToleranceValue that is a copy of this instance.

Implements

System.ICloneable
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX