iTextSharp.text.rtf.list.RtfList.SetListType C# (CSharp) 메소드

SetListType() 공개 메소드

public SetListType ( int listType ) : void
listType int
리턴 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.");
            }
        }