SQLiteCursor.SetFillWindowForwardOnly(Boolean) Method
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.
Controls fetching of rows relative to requested position.
[Android.Runtime.Register("setFillWindowForwardOnly", "(Z)V", "GetSetFillWindowForwardOnly_ZHandler", ApiSince=28)]
public virtual void SetFillWindowForwardOnly (bool fillWindowForwardOnly);
[<Android.Runtime.Register("setFillWindowForwardOnly", "(Z)V", "GetSetFillWindowForwardOnly_ZHandler", ApiSince=28)>]
abstract member SetFillWindowForwardOnly : bool -> unit
override this.SetFillWindowForwardOnly : bool -> unit
Parameters
- fillWindowForwardOnly
- Boolean
if true, rows will be fetched starting from requested position up to the window's capacity. Default value is false.
- Attributes
Remarks
Controls fetching of rows relative to requested position.
Calling this method defines how rows will be loaded, but it doesn't affect rows that are already in the window. This setting is preserved if a new window is #setWindow(CursorWindow) set
Java documentation for android.database.sqlite.SQLiteCursor.setFillWindowForwardOnly(boolean)
.
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.