Proprietà TaskItem.IsSettable
Restituisce un valore che indica se è possibile modificare una determinata colonna di un'attività.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
ReadOnly Property IsSettable ( _
Column As vsTaskListColumn _
) As Boolean
bool this[
vsTaskListColumn Column
] { get; }
property bool IsSettable[[InAttribute] vsTaskListColumn Column] {
bool get ([InAttribute] vsTaskListColumn Column);
}
abstract IsSettable :
Column:vsTaskListColumn -> bool with get
JScript non supporta le proprietà indicizzate.
Parametri
Column
Tipo: EnvDTE.vsTaskListColumnCostante vsTaskListColumn che indica la colonna dell'attività.
Valore proprietà
Tipo: Boolean
Valore booleano true se la colonna può essere modificata; false in caso contrario.
Esempi
[Visual Basic]
Sub IsSettableExample()
' 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
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
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.