JSValue.From Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
From(UInt32, JSContext) |
Erstellt eine JavaScript-Nummer, die die bereitgestellte 32-Bit-Version |
From(String, JSContext) |
Erstellt eine JavaScript-Zeichenfolge aus der bereitgestellten Zeichenfolge. |
From(Int32, JSContext) |
Erstellt eine JavaScript-Ganzzahl für die bereitgestellte |
From(Double, JSContext) |
Erstellt ein JavaScript-Double aus dem bereitgestellten Double |
From(Boolean, JSContext) |
Erstellt einen booleschen JavaScript-Wert aus dem booleschen Wert bereitstellen. |
From(CGSize, JSContext) | |
From(NSObject, JSContext) |
Konvertiert |
From(CGRect, JSContext) | |
From(CGPoint, JSContext) | |
From(NSRange, JSContext) |
Erstellt ein JavaScript-Objekt mit |
From(UInt32, JSContext)
Erstellt eine JavaScript-Nummer, die die bereitgestellte 32-Bit-Version value
darstellt.
[Foundation.Export("valueWithUInt32:inContext:")]
public static JavaScriptCore.JSValue From (uint value, JavaScriptCore.JSContext context);
static member From : uint32 * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- value
- UInt32
- context
- JSContext
Gibt zurück
- Attribute
Gilt für:
From(String, JSContext)
Erstellt eine JavaScript-Zeichenfolge aus der bereitgestellten Zeichenfolge.
public static JavaScriptCore.JSValue From (string value, JavaScriptCore.JSContext context);
static member From : string * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- value
- String
- context
- JSContext
Gibt zurück
Gilt für:
From(Int32, JSContext)
Erstellt eine JavaScript-Ganzzahl für die bereitgestellte ivalue
.
[Foundation.Export("valueWithInt32:inContext:")]
public static JavaScriptCore.JSValue From (int ivalue, JavaScriptCore.JSContext context);
static member From : int * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- ivalue
- Int32
- context
- JSContext
Gibt zurück
- Attribute
Gilt für:
From(Double, JSContext)
Erstellt ein JavaScript-Double aus dem bereitgestellten Double value
.
[Foundation.Export("valueWithDouble:inContext:")]
public static JavaScriptCore.JSValue From (double value, JavaScriptCore.JSContext context);
static member From : double * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- value
- Double
- context
- JSContext
Gibt zurück
- Attribute
Gilt für:
From(Boolean, JSContext)
Erstellt einen booleschen JavaScript-Wert aus dem booleschen Wert bereitstellen.
[Foundation.Export("valueWithBool:inContext:")]
public static JavaScriptCore.JSValue From (bool value, JavaScriptCore.JSContext context);
static member From : bool * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- value
- Boolean
- context
- JSContext
Gibt zurück
- Attribute
Gilt für:
From(CGSize, JSContext)
[Foundation.Export("valueWithSize:inContext:")]
public static JavaScriptCore.JSValue From (CoreGraphics.CGSize size, JavaScriptCore.JSContext context);
static member From : CoreGraphics.CGSize * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- size
- CGSize
- context
- JSContext
Gibt zurück
- Attribute
Gilt für:
From(NSObject, JSContext)
Konvertiert value
in ein JavaScript-Objekt im angegebenen Kontext.
[Foundation.Export("valueWithObject:inContext:")]
public static JavaScriptCore.JSValue From (Foundation.NSObject value, JavaScriptCore.JSContext context);
static member From : Foundation.NSObject * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- value
- NSObject
- context
- JSContext
Gibt zurück
- Attribute
Gilt für:
From(CGRect, JSContext)
[Foundation.Export("valueWithRect:inContext:")]
public static JavaScriptCore.JSValue From (CoreGraphics.CGRect rect, JavaScriptCore.JSContext context);
static member From : CoreGraphics.CGRect * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- rect
- CGRect
- context
- JSContext
Gibt zurück
- Attribute
Gilt für:
From(CGPoint, JSContext)
[Foundation.Export("valueWithPoint:inContext:")]
public static JavaScriptCore.JSValue From (CoreGraphics.CGPoint point, JavaScriptCore.JSContext context);
static member From : CoreGraphics.CGPoint * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- point
- CGPoint
- context
- JSContext
Gibt zurück
- Attribute
Gilt für:
From(NSRange, JSContext)
Erstellt ein JavaScript-Objekt mit length
den Eigenschaften und range
, die von der bereitgestellten range
abgeleitet werden.
[Foundation.Export("valueWithRange:inContext:")]
public static JavaScriptCore.JSValue From (Foundation.NSRange range, JavaScriptCore.JSContext context);
static member From : Foundation.NSRange * JavaScriptCore.JSContext -> JavaScriptCore.JSValue
Parameter
- range
- NSRange
- context
- JSContext
Gibt zurück
- Attribute