// Ophalen van de waarde in het veld s_prix_ti
Dubbel bedrag = ((Double)Report.GetColumnValue("StockRep.s_prix_ti"));

// Het lettertype aanpassen in functie van het bedrag
if (montant < 10)
  Text1.Font = new Font("Arial", 8F, ((FontStyle)(FontStyle.Bold | FontStyle.Underline)), GraphicsUnit.Point, ((byte)(0)));
else
  Text1.Font = new Font("Arial", 8F, ((FontStyle)(FontStyle.Regular)), GraphicsUnit.Point, ((byte)(0)));