DatePrototype.setUTCFullYear(Object, Double, Object, Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 DateObject 的年份值设置为以协调世界时 (UTC) 表示的指定年份值。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
static double setUTCFullYear(System::Object ^ thisob, double dyear, System::Object ^ month, System::Object ^ date);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Date_setUTCFullYear)]
public static double setUTCFullYear (object thisob, double dyear, object month, object date);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Date_setUTCFullYear)>]
static member setUTCFullYear : obj * double * obj * obj -> double
Public Shared Function setUTCFullYear (thisob As Object, dyear As Double, month As Object, date As Object) As Double
参数
- thisob
- Object
此方法所作用于的对象。
- dyear
- Double
要为 thisob
设置的年份值。
- month
- Object
要为 thisob
设置的月份值。
- date
- Object
要为 thisob
设置的日期值。
返回
设置该值后 thisob
的新值(以 UTC 表示)。
- 属性