11 writes to ActualHeight
Microsoft.Maui.Controls (11)
LegacyLayouts\GridCalc.cs (11)
161
row.
ActualHeight
= row.Height.Value;
205
row.
ActualHeight
= actualHeight;
262
row.
ActualHeight
= row.Height.Value * starRowHeight;
361
row.
ActualHeight
-= contraction;
487
row.
ActualHeight
-= delta * row.Height.Value;
525
row.
ActualHeight
= -1;
582
row.
ActualHeight
+= deltaHeight;
632
row.
ActualHeight
= 0;
642
row.
ActualHeight
= row.Height.Value * starRowHeight;
742
row.
ActualHeight
= actualHeight;
782
row.
ActualHeight
= 0;
22 references to ActualHeight
Microsoft.Maui.Controls (22)
LegacyLayouts\GridCalc.cs (22)
38
posy += structure.Rows[i].
ActualHeight
;
43
double h = structure.Rows[r].
ActualHeight
;
45
h += RowSpacing + structure.Rows[r + i].
ActualHeight
;
76
rowHeightSum += r.
ActualHeight
;
78
nonStarRowHeightSum += r.
ActualHeight
;
185
if (row.
ActualHeight
>= 0) // if Actual is already set (by a smaller span), skip till pass 3
188
double actualHeight = row.
ActualHeight
;
284
rowHeightSum += Math.Max(0, r.
ActualHeight
);
347
contractionSpace += r.
ActualHeight
- r.MinimumHeight;
359
double availableSpace = row.
ActualHeight
- row.MinimumHeight;
453
starRowHeight = row.
ActualHeight
;
457
starRowHeight = Math.Min(row.
ActualHeight
, starRowHeight);
465
contractionSpace += row.
ActualHeight
- row.MinimumHeight;
720
if (row.
ActualHeight
>= 0) // if Actual is already set (by a smaller span), skip till pass 3
723
double actualHeight = row.
ActualHeight
;
755
if (!row.Height.IsStar || row.Height.Value == 0 || row.
ActualHeight
<= 0)
758
starRowRequestHeight = Math.Max(starRowRequestHeight, row.
ActualHeight
/ row.Height.Value);
781
if (row.
ActualHeight
< 0)
819
if (_rows[i].
ActualHeight
<= 0)
841
if (_rows[i].
ActualHeight
>= 0)
842
actual += _rows[i].
ActualHeight
;
871
double actual = _rows[i].
ActualHeight
;