有没有办法检查OLEObject是否具有LinkedCell属性?例如,标签和按钮没有linkedcells,而其他标签和按钮则有。我正试图编写一段代码,通过循环工作表中的所有OLEObjects来替换linkedcells。提前谢谢。
In C#, I know that I can overload the constructor for a class by specifying it in the body of the class: public class MyClass() { public MyClass(String s) { ... } } This overrides the default ...