Returns the margin between the top edge of the graphic section and the top edge of the graphic as a percentage of the graphic height.
Object.YBegin
| Object | Picture
Object with this property |
| Object.YBegin | Double with read access. |
The following example specifies the margins of the graphic section. DisplayObj must be a Graphic type:
Dim oMyObj Set oMyObj = View.ActiveSheet.ActiveArea.DisplayObj Call MsgBoxDisp("XBegin: " & oMyObj.XBegin) Call MsgBoxDisp("XEnd: " & oMyObj.XEnd) Call MsgBoxDisp("YBegin: " & oMyObj.YBegin) Call MsgBoxDisp("YEnd: " & oMyObj.YEnd)