C# Class Microsoft.VisualStudio.Project.Automation.OAProperty

Inheritance: EnvDTE.Property
Mostra file Open project: tunnelvisionlabs/MPFProj10

Public Methods

Method Description
OAProperty ( OAProperties parent, PropertyInfo pi ) : System
get_IndexedValue ( object index1, object index2, object index3, object index4 ) : object

Returns one element of a list.

let_Value ( object value ) : void

Setter function to set properties values.

set_IndexedValue ( object index1, object index2, object index3, object index4, object value ) : void

Sets the value of the property at the specified index.

Method Details

OAProperty() public method

public OAProperty ( OAProperties parent, PropertyInfo pi ) : System
parent OAProperties
pi System.Reflection.PropertyInfo
return System

get_IndexedValue() public method

Returns one element of a list.
public get_IndexedValue ( object index1, object index2, object index3, object index4 ) : object
index1 object The index of the item to display.
index2 object The index of the item to display. Reserved for future use.
index3 object The index of the item to display. Reserved for future use.
index4 object The index of the item to display. Reserved for future use.
return object

let_Value() public method

Setter function to set properties values.
public let_Value ( object value ) : void
value object
return void

set_IndexedValue() public method

Sets the value of the property at the specified index.
public set_IndexedValue ( object index1, object index2, object index3, object index4, object value ) : void
index1 object The index of the item to set.
index2 object Reserved for future use.
index3 object Reserved for future use.
index4 object Reserved for future use.
value object The value to set.
return void