Is there a way to access the SMath objects from MS Visual Web Developer?
For example in Excel VBA you can access properties of Excel
Application.Worksheets(1) will return the first worksheet.
Say I wanted to add a new MathToolbar.
Dim mb As SMath.DeskTop.MathBar
mb = New MathBar
SMath.DeskTop.MathToolbar.AddBar(mb)
Of course this doesn't work because SMath.DeskTop.MathToolbar is not a reference to the SMath MathToolbar. I need something like
Application.MathToolbar.AddBar(mb)
Is this possible? And how? Thanks.