Load map at specific zoom level?

I have a map am loading it with : axMap1.ZoomToWorld();

I want to load at ZoomToWorld but at zoom level 2 instead of the default Zoom level 0, so the map fills the screen, how would I specify zoom level 2?

Never mind, I figured out if I set the scale at load time I get the map zoom I am looking for. Leaving this up to help other new users :

On my winform load :
axMap1.ZoomToWorld();
axMap1.CurrentScale = 147914678;