SW VBA Z AXIS UP

What is the Solidworks API callout in VBA to change the view orientation from the y axis up to apply Z up. I can not find it in the API help documentation. 

Tried calling swApp.RunCommand(3449, "")

boolStatus = swModelDocExt.SetUpAxis(swUpAxis_Z, True)

boolStatus = swApp.RunCommand(swCommands_ZUpViewOrientation, "")

swApp.RunCommand swCommands_e.swCommands_Apply_Z_Up_Views, ""

boolStatus = swModelDocExt.SetUpAxis(2, True)

 

Is it even possible with how new the Z axis up feature is?