All Frameworks Object Hierarchy This Framework Previous Next Indexes
IUnknown
|
+---IDispatch
|
+---CATBaseUnknown
|
+---CATBaseDispatch
|
+---AnyObject
|
+---DrawingArrow
| o Property HeadSymbol( | ) As CatSymbolType |
oSymbol = MyArrow.HeadSymbol
| o Property HeadTarget( | ) As CATBaseDispatch |
oTarget = MyArrow.HeadTarget
| o Property NbInterruption( | ) As long (Read Only) |
oNbInterruption = MyArrow.NbInterruption
| o Property NbPoint( | ) As long (Read Only) |
oNbPoint = MyArrow.NbPoint
| o Property TailSymbol( | ) As CatSymbolType |
oSymbol = MyArrow.TailSymbol
| o Property TailTarget( | ) As CATBaseDispatch |
oTarget = MyArrow.TailTarget
| o Sub AddInterruption( | double | iFirstPointX, |
| double | iFirstPointY, | |
| double | iSecondPointX, | |
| double | iSecondPointY) |
iFirstPointX = 10. iFirstPointY = 20. iSecondPointX = 20. iSecondPointY = 20. MyArrow.AddInterruption iFirstPointX, iFirstPointY, iSecondPointX, iSecondPointY
| o Sub AddPoint( | long | iNum, |
| double | iX, | |
| double | iY) |
iNum = 1 iX = 10. iY = 20. MyArrow.AddPoint iNum, iX, iY
| o Func GetInterruptions( | CATSafeArrayVariant | oInterruptions) As long |
oNbInterruptions = MyArrow.GetInterruptions(oInterruptions)
| o Sub GetPoint( | long | iNum, |
| double | oX, | |
| double | oY) |
iNum = 1 MyArrow.GetPoint(iNum, oX, oY)
| o Func GetPoints( | CATSafeArrayVariant | oPoints) As long |
oNbPoints = MyArrow.GetPoints(oPoints)
| o Sub ModifyPoint( | long | iNum, |
| double | iX, | |
| double | iY) |
iNum = 1 iX = -10. iY = -20. MyArrow.ModifyPoint iNum, iX, iY
| o Sub RemoveInterruption( | long | iNum) |
iNum = 2 MyArrow.RemoveInterruption iNum
| o Sub RemovePoint( | long | iNum) |
iNum = 2 MyArrow.RemovePoint iNum
Copyright © 2003, Dassault Systèmes. All rights reserved.