Exemplo n.º 1
0
        public ISyncDom Width(Func <int, int, string> function)
        {
            var id = IntIntStringStorage.Add(function);

            Invoke <object>("LMTWidthFunc1", _selector, id);
            return(this);
        }
Exemplo n.º 2
0
        public ISyncDom Height(Func <int, int, string> function)
        {
            var id = IntIntStringStorage.Add(function);

            Invoke <object>("LMTHeightFunc2", _selector, id);
            return(this);
        }
Exemplo n.º 3
0
        public async Task <IAsyncDom> Width(Func <int, int, string> function)
        {
            var id = IntIntStringStorage.Add(function);

            await InvokeAsync <object>("LMTWidthFunc1", _selector, id);

            return(this);
        }