TaskItem.IsSettable Property
Returns whether a given column of a task item can be edited.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
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 does not support indexed properties.
Parameters
Column
Type: EnvDTE.vsTaskListColumnA vsTaskListColumn constant indicating the column for the task item.
Property Value
Type: System.Boolean
A Boolean value indicating true if the column can be edited, false if not.
Examples
[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
.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.