Thank you @J-Camper ,
Your code helped me a lot.
Actually, I wanted whenever you press the Home button to have XYZ like in the picture.
Maybe I did not explain it properly in my 1st post. Excuse me for that.

Here is the code I made, whit 99% of your help.
It does exactly what I wanted, every time, just do not understand why x, y, x of Vector need to be 0, 1, 1.
I would expect 1, 1, 1 but no, that doesn't work, so I played with numbers and found what works.
Would like to understand why but I guess you and everyone else don't have time to explain.
Dim cam As Camera = ThisApplication.ActiveView.Camera
Dim camUp As UnitVector = cam.UpVector
cam.Parent.ResetFront 'Reset Front View
cam.ViewOrientationType = ViewOrientationTypeEnum.kTopViewOrientation 'Top View
cam.ApplyWithoutTransition 'Apply Top View
camUp.X = 0 'Up Vector X
camUp.Y = 1 'Up Vector Y
camUp.Z = 1 'Up Vector Z
cam.UpVector = camUp 'Up Vector
cam.ApplyWithoutTransition 'Apply Up Vector
cam.Parent.SetCurrentAsFront 'Current as Front
cam.ApplyWithoutTransition 'Apply Current as Front
cam.ViewOrientationType = ViewOrientationTypeEnum.kIsoTopRightViewOrientation 'IsoTopRight View
cam.ApplyWithoutTransition 'Apply IsoTopRight View
cam.Fit 'View Extents
cam.Apply 'Apply View Extents
cam.Parent.SetCurrentAsHome 'Set New Home View