Get Actor size

How do I get an Actor size? I can see the GetActorBounds method, which takes as parameters origin and extent of an actor, but those are the values that I actually trying to get!

These two parameters are output parameters. You call it this way:

FVector origin;
FVector boxExtent;
a->GetActorBounds(false, origin, boxExtent);