Line Profile Peak Integration
For clarification, it seems that the Line Profile tool in Premier does not include a peak integration facility. If correct, what would be the best method within Premier to determine peak integrals?
0
Answers
I’m sure what you are looking. Could you please give an example or explain what you are trying to do.
Thanks,
Nikita.
Public Function LineProfile_Function() As SimpleScript LineProfile_Function = New SimpleScript Dim doc1 With Application.DocumentCommands.Active(LineProfile_Function) .Run(doc1) End With With Automate.ScriptingCommands.CodeCommand(LineProfile_Function) If .Run() Then Dim lpe As LineProfile.McLineProfileEngine = LineProfile.AddIn.LineProfileEngine(doc1,True) If lpe IsNot Nothing Then MsgBox("Profiles Count = " & lpe.FeaturesCount) End If End If End With End Function