DataConnectionDialog.Title Property
Retrieves or sets the string representing text shown on the connection dialog box title bar.
Namespace: Microsoft.VisualStudio.Data
Assembly: Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Public MustOverride Property Title As String
'Usage
Dim instance As DataConnectionDialog
Dim value As String
value = instance.Title
instance.Title = value
public abstract string Title { get; set; }
public:
virtual property String^ Title {
String^ get () abstract;
void set (String^ value) abstract;
}
public abstract function get Title () : String
public abstract function set Title (value : String)
Property Value
Type: System.String
Returns the string representing the text shown in the title bar of the dialog box.
Remarks
Since the data connection dialog box can be used in many contexts, this property allows the client to specify a dialog title that more closely matches their current context. The default value is the string "Connection Properties."
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.