LabVIEW has a set of conversion vi's under Functions->Numeric->Conversions that will take floats and covert them to integers. This will truncate the fractional part. In addition, LabVIEW can automatically cast numbers to the appropriate type - when you connect a float number to a vi that takes a U8 input for example.
If you don't want to do a conversion, you can use the "round to nearest", "round to +infinity" (ceiling), and "round to -infinity" (floor) functions which will truncate/round floats.