NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ListItem.SetSubItemFont

Sets the specified subitem's background color. Even if a SubItem has not been defined for this index, the font information will be stored correctly (though text will not be displayed in this font until an associated subitem text string has been defined).

[Visual Basic]
Overridable Public Sub SetSubItemFont( _
   ByVal index As Integer, _
   ByVal value As Font _
)
[C#]
public virtual void SetSubItemFont(
   int index,
   Font value
);
[C++]
public: virtual void SetSubItemFont(
   int index,
   Font* value
);
[JScript]
public function SetSubItemFont(
   index : int,
   value : Font
);

Parameters

index
the index of the subitem to query
value
the font of that subitem, or null if it will be displayed using the ListView's global font.

See Also

ListItem Class | ListItem Members | System.WinForms Namespace