All Frameworks Object Hierarchy This Framework Indexes
| o Property InputsCount( | ) As (Read Only) |
inputsCount = hybridShapeInstance.InputsCount
| o Property OutputsCount( | ) As (Read Only) |
outputsCount = hybridShapeInstance.OutputsCount
| o Property ParametersCount( | ) As (Read Only) |
parametersCount = hybridShapeInstance.ParametersCount
| o Func GetInputDataFromPosition( | iPosition) As |
Set input = hybridShapeInstance.GetInputFromPosition(2)
If TypeName(input)="Nothing" Then
MsgBox "Input not found"
End If
| o Func GetInputData( | iName) As |
Set input = shapeInstance.GetInput("Input1")
If TypeName(input)="Nothing" Then
MsgBox "Input not found"
End If
| o Func GetInputFromPosition( | iPosition) As |
Set input = hybridShapeInstance.GetInputFromPosition(2)
If TypeName(input)="Nothing" Then
MsgBox "Input not found"
End If
| o Func GetInput( | iIndex) As |
Set input = hybridShapeInstance.GetInput("Input1")
If TypeName(input)="Nothing" Then
MsgBox "Input not found"
End If
| o Func GetOutputFromPosition( | iPosition) As |
Set output = shapeInstance.GetOuputFromPosition(2)
If TypeName(output)="Nothing" Then
MsgBox "Output not found"
End If
| o Func GetOutput( | iName) As |
Set output = shapeInstance.GetOuput("Output1")
If TypeName(output)="Nothing" Then
MsgBox "Output not found"
End If
| o Func GetParameterFromPosition( | iPosition) As |
Set parameter = hybridShapeInstance.GetParameterFromPosition(2)
If TypeName(input)="Nothing" Then
MsgBox "Parameter not found"
End If
| o Func GetParameter( | iName) As |
Set parameter = hybridShapeInstance.GetParameter("Parameter1")
If TypeName(parameter)="Nothing" Then
MsgBox "Parameter not found"
End If
| o Sub PutInputData( | iName, | |
| iInput) |
shapeInstance.PutInput "Input1",point
| o Sub PutInput( | iIndex, | |
| iInput) |
hybridShapeInstance.PutInput "Input1",point
Copyright © 2003, Dassault Systèmes. All rights reserved.