VCCodeUsingAlias Interface

 

An object representing an alias code element in the source code of a solution.

Namespace:   Microsoft.VisualStudio.VCCodeModel
Assembly:  Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)

[GuidAttribute("0EA4A801-B908-4A76-B63E-45DAA3CC20BA")]
public interface VCCodeUsingAlias

NameDescription
System_CAPS_pubpropertyAccess

Gets the access attributes of this item.

System_CAPS_pubpropertyAttributes

Gets a collection of all of the attributes for the object.

System_CAPS_pubpropertyChildren

Gets a collection of objects contained within this code construct.

System_CAPS_pubpropertyCodeModel

Gets the VCCodeModel object for the project.

System_CAPS_pubpropertyCollection

Gets the collection containing the object supporting this property or contained within this code construct.

System_CAPS_pubpropertyComment

Gets or sets the comment associated with the code element.

System_CAPS_pubpropertyDisplayName

Gets the name used in the user interface for this output group.

System_CAPS_pubpropertyDTE

Gets the top-level extensibility object.

System_CAPS_pubpropertyEndPoint

Gets the edit point that is the location of the end of the code item.

System_CAPS_pubpropertyEndPointOf[vsCMPart, vsCMWhere]

Returns the end point of the object.

System_CAPS_pubpropertyExtender[String]

Gets the requested Extender object if it is available for this object.

System_CAPS_pubpropertyExtenderCATID

Gets the Extender category ID (CATID) for the object.

System_CAPS_pubpropertyExtenderNames

Gets a list of available Extenders for the object.

System_CAPS_pubpropertyFile

Gets the file associated with this element.

System_CAPS_pubpropertyFullName

Gets the full path and name of the object's file.

System_CAPS_pubpropertyInfoLocation

Gets the capabilities of the code model.

System_CAPS_pubpropertyIsCaseSensitive

Determines whether a code element is case-sensitive.

System_CAPS_pubpropertyIsCodeType

Determines whether a CodeType object can be obtained from this object.

System_CAPS_pubpropertyIsInjected

Determines whether a code element has been injected by an attribute.

System_CAPS_pubpropertyIsReadOnly

Determines whether the file containing the object is read-only.

System_CAPS_pubpropertyIsTemplate

Determines whether this element is a template.

System_CAPS_pubpropertyIsZombie

Determines whether the object exists.

System_CAPS_pubpropertyKind

Gets the type of the object.

System_CAPS_pubpropertyLanguage

Gets the programming language used to author the code.

System_CAPS_pubpropertyLocation[vsCMWhere]

Returns the location of the object declaration.

System_CAPS_pubpropertyName

Gets or sets the name of the object.

System_CAPS_pubpropertyNamespace

Gets an object defining the namespace.

System_CAPS_pubpropertyParent

Gets the immediate parent object of this object.

System_CAPS_pubpropertyPicture

Gets a picture automation object to be used as an icon in the user interface.

System_CAPS_pubpropertyProject

Gets the Project object associated with the object.

System_CAPS_pubpropertyProjectItem

Gets the ProjectItem object associated with this object.

System_CAPS_pubpropertyReferences

Not currently implemented.

System_CAPS_pubpropertyStartPoint

Gets a TextPoint object that defines the beginning of the code item.

System_CAPS_pubpropertyStartPointOf[vsCMPart, vsCMWhere]

Gets the start point of the object.

System_CAPS_pubpropertyTemplateParameters

Gets the collection of parameters contained in a class template.

System_CAPS_pubpropertyTemplatizations

Microsoft Internal Use Only.

System_CAPS_pubpropertyTypeString

Gets or sets the type of the object using a string representation of the type.

NameDescription
System_CAPS_pubmethodAddAttribute(String, String, Object)

Creates a new attribute code construct and inserts the code in the correct location.

System_CAPS_pubmethodAddTemplateParameter(String, Object, Object)

Adds a parameter to the template

System_CAPS_pubmethodGetEndPoint(vsCMPart)

Returns a TextPoint object that marks the end of the code element definition.

System_CAPS_pubmethodGetStartPoint(vsCMPart)

Returns a TextPoint object that defines the beginning of the code element definition.

System_CAPS_pubmethodIsSelf(Object)

Determines if the specified code element is the same as the parent code element.

System_CAPS_pubmethodRemoveTemplateParameter(Object)

Removes a parameter from a template definition.

The VCCodeUsingAlias object is used to modify an existing alias construct.

If an object has no children, then Nothing or null is returned.

Children is used primarily by Visual C++. Children returns every object returnable from a code element.

To iterate through the members of a namespace or type (class, struct, interface, and so forth), you must query interface (QI) or cast the CodeElement to a CodeNamespace and then use the Members property.

Children returns the collection of all related CodeElement objects that can be referenced via this code element.

The Children property may return Nothing or null depending on the object and the language. There is no requirement to support this in Visual Studio.

Return to top
Show: