up有分!

解决方案 »

  1.   

    http://www.geocities.jp/eco21426/Tips/RichEdit.001.htm   g_SkipBlock := THashedStringList.Create;
        with g_SkipBlock do
        begin
            CaseSensitive := true;
            Add('colortbl');
            Add('fonttbl');
            Add('footnote');
            Add('pict');
            Add('pntext');
            Add('pntxtb');
            Add('stylesheet');
        end;
      

  2.   

    UnitIniFilesDescriptionTHashedStringList is a string list that uses a hash table internally to speed the process of locating strings. It is used internally by TMemIniFile to manage the strings from an INI file, but can be used in the same way as any other string list. By using THashedStringList instead of TStringList, you can improve performance when the list contains a large number of strings.