დაახლოებით ერთი კვირის წინ, 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):
ფუნქცია | აღწერა (თუ არ იგივე როგორც. წმინდა ფუნქცია) |
რაოდენობის მასალა() | 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