diff --git a/Barcoded/LinearEncoder.cs b/Barcoded/LinearEncoder.cs
index 949754e..358eb53 100644
--- a/Barcoded/LinearEncoder.cs
+++ b/Barcoded/LinearEncoder.cs
@@ -143,6 +143,16 @@ public void SetHumanReadablePosition(string position)
PropertyChanged = true;
}
+ ///
+ /// Sets the visibility and position of the human readable value.
+ /// Hidden, Above, Below, Embedded
+ ///
+ public void SetHumanReadablePosition(HumanReadablePosition position)
+ {
+ HumanReadablePosition = position;
+ PropertyChanged = true;
+ }
+
///
/// The font to be used for the human readable value, if shown.
/// Will default to the system default font if not set.