Code:
Dim oActDoc As Document
Set oActDoc = CATIA.ActiveDocument Dim oSheet As DrawingSheet
Set oSheet = oActDoc.Sheets.Item(1)
Dim oView As DrawingView
Set oView = oSheet.Views.Item(3)
Dim oGenBeh As DrawingViewGenerativeBehavior
Set oGenBeh = oView.GenerativeBehavior
Dim oX1 As Double
Dim oY1 As Double
Dim oZ1 As Double
Dim oX2 As Double
Dim oY2 As Double
Dim oZ2 As Double
oGenBeh.GetProjectionPlane oX1, oY1, oZ1, oX2, oY2, oZ2
Debug.Print oX1, oY1, oZ1
Debug.Print oX2, oY2, oZ2
Dim oXNormal As Double
Dim oYNormal As Double
Dim oZNormal As Double
oGenBeh.GetProjectionPlaneNormal oXNormal, oYNormal, oZNormal
Debug.Print oXNormal, oYNormal, oZNormal