ASExecuteDDLTask.TaskDisplayName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the unique name for the Analysis Services Execute DDL task.
public:
static property System::String ^ TaskDisplayName { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public static string TaskDisplayName { get; }
[<System.ComponentModel.Browsable(false)>]
member this.TaskDisplayName : string
Public Shared ReadOnly Property TaskDisplayName As String
Property Value
The unique name for the Analysis Services Execute DDL task.
- Attributes
Examples
The following code sample displays information about the ASExecuteDDLTask by using the TaskDisplayName and TaskDescription properties.
string taskInfo;
taskInfo = String.Format("{0}: {1}", thTask.Properties("TaskDisplayName").GetValue(thTask), thTask.Properties("TaskDescription").GetValue(thTask));
MessageBox.Show(taskInfo, "Analysis Services Execute DDL Task", MessageBoxButtons.OK, MessageBoxIcon.Information);
Dim taskInfo As String
taskInfo = [String].Format("{0}: {1}", _
thTask.Properties("TaskDisplayName").GetValue(thTask), _
thTask.Properties("TaskDescription").GetValue(thTask))
MessageBox.Show(taskInfo, "Analysis Services Execute DDL Task", _
MessageBoxButtons.OK, MessageBoxIcon.Information)
Remarks
This is the localizable display name of the task.