Condividi tramite


Proprietà TaskItem.FileName

Ottiene o imposta una stringa che rappresenta il nome file che è stato passato alla finestra Elenco attività al momento della creazione dell'attività.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
Property FileName As String
string FileName { get; set; }
property String^ FileName {
    String^ get ();
    void set (String^ value);
}
abstract FileName : string with get, set
function get FileName () : String 
function set FileName (value : String)

Valore proprietà

Tipo: String
Stringa che rappresenta il nome file che è stato passato alla finestra Elenco attività al momento della creazione dell'attività.

Note

La stringa vuota è un token speciale che indica che all'attività non è associato alcuno nome di file. La proprietà FileName restituisce il messaggio di errore "Errore non specificato" se non esiste un valore corrispondente, ovvero un nome di file.

Esempi

[Visual Basic]

Sub FilenameExample()
   ' Before running, add a task to the Task List.
   Dim win As Window = DTE.Windows.Item(Constants.vsWindowKindTaskList)
   Dim TL As TaskList = win.Object
   Dim TLItem As TaskItem = TL.TaskItems.Item(1)
   Dim msg As String

   ' List properties of the Task Item.
   msg = "TaskItem Category property value: " & TLItem.Category & vbCr
   msg = msg & "TaskItem SubCategory property value: " & TLItem.SubCategory & vbCr
   msg = msg & "TaskItem Checked property value: " & TLItem.Checked & vbCr
   msg = msg & "TaskItem Displayed property value: " & TLItem.Displayed & vbCr
   ' The following line will fail with an error unless a file is 
   ' associated with the Task Item.
   msg = msg & "TaskItem Filename property value: " & TLItem.FileName & vbCr
   msg = msg & "TaskItem IsSettable property value: " & TLItem.IsSettable(vsTaskListColumn.vsTaskListColumnCheck) & vbCr
   msg = msg & "TaskItem Priority property value: " & TLItem.Priority & vbCr
   MsgBox(msg)
End Sub

Sicurezza di .NET Framework

Vedere anche

Riferimenti

TaskItem Interfaccia

Spazio dei nomi EnvDTE