Пред околу една недела, 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". |
Подниза(започне) | String.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