ObjectPrototype.propertyIsEnumerable(Object, Object) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Determina se la proprietà specificata dell'oggetto specificato è enumerabile.
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.
- name
- Object
Proprietà da testare.
Restituisce
true
se name
è una proprietà enumerabile. In caso contrario, false
.
- Attributi