[JEDI.NET-commits] docs Jedi.Strings.xml,1.3,1.4
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2004-11-26 17:32:27
|
Update of /cvsroot/jedidotnet/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2134/docs Modified Files: Jedi.Strings.xml Log Message: Regnerated and corrected the parameter of a nested type. Index: Jedi.Strings.xml =================================================================== RCS file: /cvsroot/jedidotnet/docs/Jedi.Strings.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Jedi.Strings.xml 26 Nov 2004 15:35:34 -0000 1.3 --- Jedi.Strings.xml 26 Nov 2004 17:32:17 -0000 1.4 *************** *** 1,5 **** <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-11-26 15:29 UTC--> <assembly> <name>Jedi.Text</name> --- 1,5 ---- <?xml version="1.0" encoding="utf-8"?> <doc> ! <!--most recent auto update: 2004-11-26 16:53 UTC--> <assembly> <name>Jedi.Text</name> *************** *** 229,249 **** </returns> </member> ! <member name="M:Jedi.Strings.StringUtils.ExpandTabs(System.String,Jedi.Strings.StringUtils+TabSet)"> <summary> </summary> <param name="s"> </param> <param name="tabSet"> </param> <returns> </returns> </member> <member name="M:Jedi.Strings.StringUtils.ExpandTabs(System.String,System.Int32[])"> <summary> ! Expands the tab characters in a string using the specified array of tabulation positions and a default tab ! width. </summary> <param name="s"> ! The string to expand the tabs in. </param> <param name="tabs"> --- 229,260 ---- </returns> </member> ! <member name="M:Jedi.Strings.StringUtils.ExpandTabs(System.String,Jedi.Strings.StringUtils.TabSet)"> ! <overloads> ! Expands the tab characters in a string into spaces. ! </overloads> <summary> + Expands the tab characters in a string into spaces using the specified + <see cref="T:Jedi.Strings.StringUtils.TabSet" /> instance. </summary> <param name="s"> + The string to expand the tabs of. </param> <param name="tabSet"> + A <see cref="T:Jedi.Strings.StringUtils.TabSet" /> instance that defines the tabulation positions and the + additional tab width. </param> <returns> + A <see cref="T:System.String" /> equivalent to the one specified by the <paramref name="s" /> parameter with + all of the tab characters expanded into spaces following the settings of the <paramref name="tabSet" /> + parameter. </returns> </member> <member name="M:Jedi.Strings.StringUtils.ExpandTabs(System.String,System.Int32[])"> <summary> ! Expands the tab characters in a string into spaces using the specified array of tabulation positions and a ! default tab width. </summary> <param name="s"> ! The string to expand the tabs of. </param> <param name="tabs"> *************** *** 292,295 **** --- 303,315 ---- <paramref name="additionalTabsWidth" /> parameters. </returns> + <remarks> + This overloaded version will create a TabSet instance and use it to perform the expansion. A call to this + overloaded version can therefore be rewritten as: + <code lang="C#"> + StringUtils.ExpandTabs(s, new StringUtils.TabSet(tabs, additionalTabsWidth)) + </code><code lang="Visual Basic,C++,JScript"> + StringUtils.ExpandTabs(s, StringUtils.TabSet.Create(tabs, additionalTabsWidth)) + </code> + </remarks> </member> <member name="M:Jedi.Strings.StringUtils.ExtractQuotedString(System.String)"> |