用于定义传递给函数的可选参数。
另请参阅:IsMissing
Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)
Result = MyFunction("Here", 1, "There") ' all arguments are passed.
Result = MyFunction("Test", ,1) ' second argument is missing.
请参阅示例。