ActiveReports.Viewer3 Request technical support
Name Property
See Also 


Sets or returns the name of the accessible toolbar.

Syntax

Visual Basic (Declaration) 
Overrides Public Property Name As String
Visual Basic (Usage)Copy Code
Dim instance As ToolbarAccessible
Dim value As String
 
instance.Name = value
 
value = instance.Name
C# 
public override string Name {get; set;}

Return Value

String.

Remarks

This is a string used to identify, find, or announce a tool for the user. Call GetChild with the index of the child whose name you are retrieving to get the name of a child object.

Notes:  A name should be intuitive so that users understand its meaning or purpose. The Name property must not duplicate the name of any sibling objects in the parent. Any label displayed on tools to users should be used for the tool's Name property.

See Also