Creates and returns a compound note.
.NET Syntax
Visual Basic (Declaration) | |
---|
Function CreateCompoundNote( _
ByVal Height As Double, _
ByVal X As Double, _
ByVal Y As Double, _
ByVal Z As Double _
) As Object |
Visual Basic (Usage) | |
---|
Dim instance As IDrawingDoc
Dim Height As Double
Dim X As Double
Dim Y As Double
Dim Z As Double
Dim value As Object
value = instance.CreateCompoundNote(Height, X, Y, Z)
|
C# | |
---|
object CreateCompoundNote(
double Height,
double X,
double Y,
double Z
) |
C++/CLI | |
---|
Object^ CreateCompoundNote(
& double Height,
& double X,
& double Y,
& double Z
) |
Parameters
- Height
Note height in meters
- X
x location of note in meters
- Y
y location of note in meters
- Z
z location of note in meters
Return Value
Newly created compound note
Example
Remarks
See Also