MSScriptControl.ScriptControlClass - 访问主对象的子对象
我想将一个带有大量子对象的巨大对象添加到 ScriptControlClass 中。 访问这些子类时,我收到一个错误,指出该对象为 null 或没有对象。
MSScriptControl.ScriptControlClass js = new MSScriptControl.ScriptControlClass();
js.AllowUI = false;
js.Language = "JScript";
js.Reset();
js.AddObject("MyObject", myObject, false);
[ComVisible(true)]
class AAA
{
public BBB Bbb { get; set; }
}
class BBB
{
public CCC Ccc { get; set; }
}
class CCC
{
public string MyString { get; set; }
}
如果我想通过此 JScript 代码获取对象的最后一个字符串,我会收到错误
var x = MyObject.Bbb.Ccc.MyString;
How can I do this?
I want do add a huge object with lots of sub-objects to a ScriptControlClass.
While accessing these sub-classes I get an error that the object is null or no object
MSScriptControl.ScriptControlClass js = new MSScriptControl.ScriptControlClass();
js.AllowUI = false;
js.Language = "JScript";
js.Reset();
js.AddObject("MyObject", myObject, false);
[ComVisible(true)]
class AAA
{
public BBB Bbb { get; set; }
}
class BBB
{
public CCC Ccc { get; set; }
}
class CCC
{
public string MyString { get; set; }
}
If I want to get the last string of my objects via this JScript-Code I get the error
var x = MyObject.Bbb.Ccc.MyString;
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我必须向每个类添加 ComVisible(true) 属性,而不仅仅是第一个 AAA 类
I have to add to every class the ComVisible(true) attribute and not only to the first AAA Class