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 SourceToleranceValue()
Initializes a new instance of the ToleranceValue class.
Declaration
public ToleranceValue()
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 SourceMaterialCondition
Gets or sets the tolerance material condition.
Declaration
public ToleranceMaterialCondition MaterialCondition { get; set; }
Property Value
| Type | Description |
|---|---|
| ToleranceMaterialCondition |
ShowDiameterSymbol
Gets or sets if the tolerance diameter symbol will be shown.
Declaration
public bool ShowDiameterSymbol { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
Value
Gets or sets the tolerance value.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
| Improve this Doc View SourceClone()
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