SapObject.SapModel.Results.Setup.GetComboSelectedForOutput
Function GetComboSelectedForOutput(ByVal Name As String, ByRef Selected As Boolean) As Long
Name
The name of an existing response combination.
Selected
This item is True if the specified response combination is selected for output.
This function checks if a response combination is selected for output.
The function returns 0 if the selected flag is successfully retrieved, otherwise it returns nonzero.
Sub GetComboSelected()
'dimension variables
Dim SapObject As Sap2000.SapObject
Dim SapModel As cSapModel
Dim ret As Long
Dim Selected As Boolean
'create Sap2000 object
Set SapObject = New SAP2000.SapObject
'start Sap2000 application
SapObject.ApplicationStart
'create SapModel object
Set SapModel = SapObject.SapModel
'initialize model
ret = SapModel.InitializeNewModel
'open existing model
ret = SapModel.File.OpenFile("C:\SapAPI\Example
7-002.sdb")
'run analysis
ret = SapModel.Analyze.RunAnalysis
'check if combo is selected
ret = SapModel.Results.Setup.GetComboSelectedForOutput("COMB1",
Selected)
'close Sap2000
SapObject.ApplicationExit False
Set SapModel = Nothing
Set SapObject = Nothing
End Sub
Initial release in version 11.00.
DeselectAllCasesAndCombosForOutput