ActivationObject.CreateField(String, FieldAttributes, Object) 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.
Creates a new global variable, using the specified name, value, and attributes.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
virtual Microsoft::JScript::JSVariableField ^ CreateField(System::String ^ name, System::Reflection::FieldAttributes attributeFlags, System::Object ^ value);
protected virtual Microsoft.JScript.JSVariableField CreateField (string name, System.Reflection.FieldAttributes attributeFlags, object value);
abstract member CreateField : string * System.Reflection.FieldAttributes * obj -> Microsoft.JScript.JSVariableField
override this.CreateField : string * System.Reflection.FieldAttributes * obj -> Microsoft.JScript.JSVariableField
Protected Overridable Function CreateField (name As String, attributeFlags As FieldAttributes, value As Object) As JSVariableField
Parameters
- name
- String
The name of the field.
- attributeFlags
- FieldAttributes
A bitwise combination of the enumeration values that describe the attributes of a field. Static is added automatically.
- value
- Object
The value of the field.
Returns
A global variable that has the specified name, value, and attributes.