ViewInfo.Name Property

Definition

Gets the name of the view that is associated with the ViewInfoObject object.

public:
 property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String

Property Value

Examples

In the following example, the Name property of the ViewInfoObject object is used to display the name of a view in a message box:

ViewInfo viewInfo;
viewInfo = thisXDocument.ViewInfos[0];
thisXDocument.UI.Alert("View name: " + viewInfo.<span class="label">Name</span>);

Remarks

The name of the ViewInfoObject object is the same as the name of the view that it represents. The name of the ViewInfoObject object can also be used as the argument to the Item[Object] property of the ViewInfosCollection collection.

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Applies to