Gets a list of visual objects with the specified title.

Namespace: Ico.Gwx
Assembly: GwxRuntimeCore (in GwxRuntimeCore.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public DependencyObject[] GetElementsByTitle(
	string title
)
Visual Basic
Public Function GetElementsByTitle ( _
	title As String _
) As DependencyObject()
JScript
public function GetElementsByTitle(
	title : String
) : DependencyObject[]

Parameters

title
Type: System..::..String
The title of a visual object to find (may include wildcards). This can also be a comma-separated list of titles to find.

Return Value

A list of visual objects if found, otherwise an empty list.

Remarks

If multiple objects match the specified wildcard title, all matching objects are returned.

See Also