lw_common.ui.text_part.text_part C# (CSharp) Method

text_part() public method

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

            start_ = start;
            len_ = len;
        }