Patcher.Rules.Compiled.Helpers.FormsHelper.Find C# (CSharp) Method

Find() public method

public Find ( string editorId ) : IForm
editorId string
return IForm
        public IForm Find(string editorId)
        {
            if (!context.Rule.Engine.Context.Forms.Contains(editorId))
            {
                Log.Warning("Form with Editor ID {0} not found.", editorId);
                return null;
            }
            return context.Rule.Engine.ProxyProvider.CreateFormProxy(context.Rule.Engine.Context.Forms[editorId], ProxyMode.Discovered);
        }

Same methods

FormsHelper::Find ( string plugin, uint formId ) : IForm
FormsHelper::Find ( uint formId ) : IForm