Calendar.HandleComputeMonthStart(Int32, Int32, 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.
Returns the Julian day number of day before the first day of the given month in the given extended year.
[Android.Runtime.Register("handleComputeMonthStart", "(IIZ)I", "GetHandleComputeMonthStart_IIZHandler", ApiSince=24)]
protected abstract int HandleComputeMonthStart(int eyear, int month, bool useMonth);
	[<Android.Runtime.Register("handleComputeMonthStart", "(IIZ)I", "GetHandleComputeMonthStart_IIZHandler", ApiSince=24)>]
abstract member HandleComputeMonthStart : int * int * bool -> int
	Parameters
- eyear
 - Int32
 
the extended year
- month
 - Int32
 
the zero-based month, or 0 if useMonth is false
- useMonth
 - Boolean
 
if false, compute the day before the first day of the given year, otherwise, compute the day before the first day of the given month
Returns
the Julian day number of the day before the first day of the given month and year
- Attributes
 
Remarks
Returns the Julian day number of day before the first day of the given month in the given extended year. Subclasses should override this method to implement their calendar system.
Java documentation for android.icu.util.Calendar.handleComputeMonthStart(int, int, 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.