一个专注于大数据技术架构与应用分享的技术博客

VBA脚本中如何判断Variant变量是否为空

VBA脚本中判断Variant变量是否为空的方法,一般有以下三种:

第一种:

if typeName( curVariant) <> "Nothing" then
...
end if

第二种:

if typeName( curVariant) <> "Empty" then
...
end if

第三种:

if Not curVariant is Nothing then
...
end if

赞(1)
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《VBA脚本中如何判断Variant变量是否为空》
文章链接:https://macsishu.com/vba%e8%84%9a%e6%9c%ac%e4%b8%ad%e5%a6%82%e4%bd%95%e5%88%a4%e6%96%advariant%e5%8f%98%e9%87%8f%e6%98%af%e5%90%a6%e4%b8%ba%e7%a9%ba
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。