ARCed.Scintilla.KeywordCollection.this C# (CSharp) Method

this() public method

public this ( int keywordSet ) : string
keywordSet int
return string
        public string this[int keywordSet]
        {
            get
            {
                return this._keywords[keywordSet];
            }
            set
            {
                this._keywords[keywordSet] = value;
                NativeScintilla.SetKeywords(keywordSet, value);
            }
        }

Same methods

KeywordCollection::this ( string keywordSetName ) : string