Class MillingStepLuggage
- Namespace
- Hi.MillingSteps
- Assembly
- HiMech.dll
Represents additional data associated with a milling step.
[BsonIgnoreExtraElements]
public class MillingStepLuggage
- Inheritance
-
MillingStepLuggage
- Inherited Members
- Extension Methods
Constructors
MillingStepLuggage()
Initializes a new instance of the MillingStepLuggage class.
public MillingStepLuggage()
MillingStepLuggage(int, Substraction, LayerMillingEngagement, MillingForceLuggage)
Initializes a new instance of the MillingStepLuggage class with specified parameters.
public MillingStepLuggage(int stepIndex, Substraction substraction, LayerMillingEngagement layerMillingEngagement, MillingForceLuggage millingForceLuggage)
Parameters
stepIndex
intThe index of the associated milling step.
substraction
SubstractionThe substraction information.
layerMillingEngagement
LayerMillingEngagementThe layer milling engagement information.
millingForceLuggage
MillingForceLuggageThe milling force luggage information.
Properties
LayerMillingEngagement
Gets or sets the layer milling engagement information.
[BsonElement]
public LayerMillingEngagement LayerMillingEngagement { get; set; }
Property Value
MillingForceLuggage
Gets or sets the milling force luggage information.
[BsonElement]
public MillingForceLuggage MillingForceLuggage { get; set; }
Property Value
StepIndex
Gets or sets the index of the associated milling step.
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
[BsonId]
public int StepIndex { get; set; }
Property Value
Substraction
Gets or sets the substraction information for the milling step.
[BsonElement]
public Substraction Substraction { get; set; }