சுமார் ஒரு வாரம் முன்பு, I started up a codeplex project that provides a simple and reasonably generic method for adding custom action functions to SharePoit Designer workflow. It’s described here: http://www.codeplex.com/spdwfextensions. Beyond simply providing a framework, it also aims to provide a set of useful functions that will make SPD more useful/flexible/powerful.
இங்கே பதிப்பு தற்போதைய திட்டமிட்ட வசதிகள் 1.0: https://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=spdwfextensions&ReleaseId=8280
யார் இந்த திட்டத்தில் எந்த வட்டி இருந்தால், கருத்துரை அல்லது ஒரு விவாதம் சேர்க்க / தொடங்கவும்: http://www.codeplex.com/spdwfextensions/Thread/List.aspx
இங்கே குறியிடப்படும் என்று செயல்பாடுகளை தற்போதைய தொகுப்பாகும் (முழுமையாக இருந்த சோதனை என்று 11/08/07):
செயல்பாடு | விளக்கம் (அதே என்றால். நிகர செயல்பாடு) |
Num-உள்ளீடுகளை() | Returns the number "entries" in a string as per a specified delimiter.
எடுத்துக்காட்டாக: Num-entries in a string "a,ப,கேட்ச்" with delimiter "," = 3. |
நுழைவு() | Returns the nth token in a string as per a specified delimiter. |
நீளம் | String.Length |
பதிலாக() | String.Replace() |
கொண்டிருக்கிறது() | String.Contains() Returns the word "true" or the word "false". |
Substring(ஆரம்பி) | String.Substring(ஆரம்பி) |
Substring(ஆரம்பி,இறுதியில்) | String.Substring(ஆரம்பி,இறுதியில்) |
ToUpper() | String.ToUpper() |
ToLower() | String.ToLower() |
StartsWith() | String.StartsWith() Returns the word "true" or the word "false". |
EndsWith() | String.EndsWith() Returns the word "true" or the word "false". |
முன்பு குறிப்பிட்டபடி, நான் இன்னும் இந்த செயல்பாடுகளை சோதனை அடிப்படையில் எந்த முயற்சிகள் வழங்குவதில் ஆர்வம்.
–Monjo