UIElement3DAutomationPeer.GetNameCore Method

Definition

Returns the string that represents the UIElement3D that is associated with this UIElement3DAutomationPeer. This method is called by GetName().

protected:
 override System::String ^ GetNameCore();
protected override string GetNameCore ();
override this.GetNameCore : unit -> string
Protected Overrides Function GetNameCore () As String

Returns

The string that represents the UIElement3D that is associated with this UIElement3DAutomationPeer.

Remarks

You can think of the name property as what users use to explain the control they are referring to. Be sure to have a textual representation for all controls in the graphical user interface (GUI) so that you can programmatically refer to the control in a localized manner.

This method calls the AutomationProperties.GetName method to get the value. AutomationProperties.GetName returns a value only when the AutomationProperties.Name property is set. You can override GetNameCore and add logic to provide a name in a way that makes sense for your UIElement3D.

UIElement3DAutomationPeer is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Applies to