The following example will retrieve the large icon associated with Word documents as bitmap:
var index : Integer; bitmap: TBitmap; begin index := SystemImageList.GetIndexFromExtension('doc'); bitmap:= TBitmap.Create; SystemImageList.GetBitmap(index, bitmap); end;