主题:Delphi中的数组问题(急!!!请大虾帮我看下)
原来的代码如下(能够正常运行):
MeetingSession = class
private
...
FVideoGenerator : IXApplication ;
...
published
property VideoGenerator : IXApplication read FVideoGenerator;
...
end;
var
/// MeetingSession的全局对象
multimediaSession : MeetingSession ;
然后就可以在别的单元这样使用了:multimediaSession.VideoGenerator
现在必须要把FVideoGenerator改为数组的形式,即
FVideoGenerator : array[0..15] of IXApplication;
请问其它部分我该如何改才可以在别的单元访问这个属性呢?
MeetingSession = class
private
...
FVideoGenerator : IXApplication ;
...
published
property VideoGenerator : IXApplication read FVideoGenerator;
...
end;
var
/// MeetingSession的全局对象
multimediaSession : MeetingSession ;
然后就可以在别的单元这样使用了:multimediaSession.VideoGenerator
现在必须要把FVideoGenerator改为数组的形式,即
FVideoGenerator : array[0..15] of IXApplication;
请问其它部分我该如何改才可以在别的单元访问这个属性呢?