Class BuildObject
Information about a detected build object
Inherited Members
Namespace: DuetAPI.ObjectModel
Assembly: DuetAPI.dll
Syntax
public sealed class BuildObject : ModelObject, IModelObject, ICloneable, INotifyPropertyChanged, INotifyPropertyChanging
Properties
Cancelled
Indicates if this build object is cancelled
Declaration
public bool Cancelled { get; set; }
Property Value
Type | Description |
---|---|
bool |
Name
Name of the build object (if any)
Declaration
public string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |
X
X coordinates of the build object (in mm or null if not found)
Declaration
public ModelCollection<float?> X { get; }
Property Value
Type | Description |
---|---|
ModelCollection<float?> |
Y
Y coordinates of the build object (in mm or null if not found)
Declaration
public ModelCollection<float?> Y { get; }
Property Value
Type | Description |
---|---|
ModelCollection<float?> |