Distance Constructor (Double) |
Initializes a new instance of the structure.
Namespace: Tekla.Structures.Datatype
Assembly: Tekla.Structures.Datatype (in Tekla.Structures.Datatype.dll) Version: 2024.0.0+a110b435391768740483e3032720a566518c9a63
Parameters
- millimeters
- Type: SystemDouble
The distance in millimeters.
This example shows how to construct a new Distance instance.
using Tekla.Structures.Datatype; public class Example { public void Example1() { Distance distance = new Distance(30.2); } }