lw_common.ui.text_part.text_part C# (CSharp) 메소드

text_part() 공개 메소드

public text_part ( int start, int len, text_part src = null ) : System
start int
len int
src text_part
리턴 System
        public text_part(int start, int len, text_part src = null) {
            if ( src != null)
                copy_from(src);

            start_ = start;
            len_ = len;
        }