iTextSharp.text.rtf.list.RtfList.SetListType C# (CSharp) Method

SetListType() public method

public SetListType ( int listType ) : void
listType int
return void
        public void SetListType(int listType) {
            if (listType == LIST_TYPE_NORMAL || 
                    listType == LIST_TYPE_SIMPLE || 
                    listType == LIST_TYPE_HYBRID ) {
                this.listType = listType;
            }
            else {
                throw new ArgumentException("Invalid listType value.");
            }
        }