EnumeratorPrototype.atEnd(Object) 方法
定义
确定枚举数是否传递了集合的最后一项。Determines whether the enumerator has passed the last item of the collection.
此 API 支持产品基础结构,不能在代码中直接使用。
public:
static bool atEnd(System::Object ^ thisob);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Enumerator_atEnd)]
public static bool atEnd (object thisob);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Enumerator_atEnd)>]
static member atEnd : obj -> bool
Public Shared Function atEnd (thisob As Object) As Boolean
参数
- thisob
- Object
此方法所作用于的对象。The object that this method is acting upon.
返回
如果枚举数传递了集合的最后一项,则为 true;否则为 false。true if the enumerator has passed the last item of the collection; otherwise, false.
- 属性