Share via


GroupTaskItem.IsHeading Property

Definition

Gets the value of the Boolean isHeading parameter that is passed to the constructor.

public:
 property bool IsHeading { bool get(); };
public bool IsHeading { get; }
member this.IsHeading : bool
Public ReadOnly Property IsHeading As Boolean

Property Value

The value of the isHeading parameter that is passed to the constructor.

Examples

The following example uses the value of the IsHeading property for the heading display.

void psc(GroupTaskItem group) {

    if (group.IsHeading == true)
        DisplayBoldHeading(group);
    else
        DisplayBlankHeading(group);

} 

Remarks

This property is set in the constructor and not used internally.

Applies to