ObjectPrototype.propertyIsEnumerable(Object, Object) Metodo
Definizione
Determina se la proprietà specificata dell'oggetto specificato è enumerabile.Determines whether the specified property of the specified object is enumerable.
Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.
public:
static bool propertyIsEnumerable(System::Object ^ thisob, System::Object ^ name);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Object_propertyIsEnumerable)]
public static bool propertyIsEnumerable (object thisob, object name);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.Object_propertyIsEnumerable)>]
static member propertyIsEnumerable : obj * obj -> bool
Public Shared Function propertyIsEnumerable (thisob As Object, name As Object) As Boolean
Parametri
- thisob
- Object
Oggetto su cui agisce questo metodo.The object that this method is acting upon.
- name
- Object
Proprietà da testare.The property to test.
Restituisce
true
se name
è una proprietà enumerabile. In caso contrario, false
.true
if name
is an enumerable property; otherwise, false
.
- Attributi