Preto de unha semana, 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.
Aquí están os recursos planeados para a versión actual 1.0: https://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=spdwfextensions&ReleaseId=8280
Se alguén ten algún interese neste proxecto, por favor, deixe un comentario ou iniciar / engadir a un debate aquí: http://www.codeplex.com/spdwfextensions/Thread/List.aspx
Aquí están o actual conxunto de funcións que foron codificados (aínda que non sexa totalmente probado desde 11/08/07):
Función | Descrición (se non mesmo. función Net) |
Nun-entradas() | Volta o número "entradas" in a string as per a specified delimiter.
Por exemplo: Num-entries in a string "a,b,c" with delimiter "," = 3. |
Entrada() | Returns the nth token in a string as per a specified delimiter. |
Lonxitude | String.length |
Substituír() | String.Replace() |
Contén() | String.Contains() Returns the word "true" or the word "false". |
Substring(comezar) | String.substring(comezar) |
Substring(comezar,final) | String.substring(comezar,final) |
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". |
Como mencionado anteriormente, Eu aínda estou interesado en ofrecer todos os esforzos en termos de probar estas funcións.
–Monjo