GroupTaskItem.IsHeading 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 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.