PathIterator.HasNext Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns true if the there are more elements in this iterator to be returned.
public virtual bool HasNext { [Android.Runtime.Register("hasNext", "()Z", "GetHasNextHandler", ApiSince=34)] get; }
[<get: Android.Runtime.Register("hasNext", "()Z", "GetHasNextHandler", ApiSince=34)>]
member this.HasNext : bool
Property Value
true if there are more elements to be iterated through, false otherwise
Implements
- Attributes
Remarks
Returns true if the there are more elements in this iterator to be returned. A return value of false
means there are no more elements, and an ensuing call to #next()
or #next(float[], int)
)} will return #VERB_DONE
.
Java documentation for android.graphics.PathIterator.hasNext()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.