热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

vba中单元格的语法-Syntaxforacellinvba

ImajuststartingupwithVBAandIhavecomeintoquiteabitoftroublewiththeSyntax.Isthef

I ma just starting up with VBA and I have come into quite a bit of trouble with the Syntax. Is the format for a cell in vba, (column, row) or (row,column)?

我刚刚开始使用VBA,我在使用语法时遇到了一些麻烦。是vba,(列,行)还是(行,列)中单元格的格式?

Is there a conclusive API for VBA similar to the API on the Oracle site for Java?

是否有类似于Oracle Oracle站点上的API的VBA结论性API?

1 个解决方案

#1


7  

Assuming Excel.

There is VBA the language which is one thing, and then there is how the application hosting VBA (Excel, Word etc) exposes itself to VBA (via its Object Model) which is what your specific question relates to.

VBA的语言是一回事,然后托管VBA(Excel,Word等)的应用程序如何将自己暴露给VBA(通过其对象模型),这是您的具体问题所涉及的。

The argument order is:

参数顺序是:

 .Cells(row, column)

(http://msdn.microsoft.com/en-us/library/ff196273(v=office.14).aspx)

See References for VBA and Excel Object Model documentation by version.

请参阅版本参考VBA和Excel对象模型文档。


推荐阅读
author-avatar
可乐16311
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有