Parcourir la source

Add function "SetHeight".

Zhicheng Zhang il y a 8 ans
Parent
commit
2f601a283d
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5 0
      row.go

+ 5 - 0
row.go

@@ -9,6 +9,11 @@ type Row struct {
 	isCustom     bool
 	isCustom     bool
 }
 }
 
 
+func (r *Row) SetHeight(ht float64) {
+	r.Height = ht
+	r.isCustom = true
+}
+
 func (r *Row) SetHeightCM(ht float64) {
 func (r *Row) SetHeightCM(ht float64) {
 	r.Height = ht * 28.3464567 // Convert CM to postscript points
 	r.Height = ht * 28.3464567 // Convert CM to postscript points
 	r.isCustom = true
 	r.isCustom = true