Ejemplo n.º 1
0
        public void addLine(String sLineSrt)
        {
            // Validate
            if (this.words.Count == 0)
            {
                return;                     // Just skip if there is no space
            }
            // Get the last word in this buffer
            WordBuf wLast = this.words[this.words.Count - 1];

            wLast.n = sLineSrt;
        }
Ejemplo n.º 2
0
        public void markEnd()
        {
            // Validate
            if (this.words.Count == 0)
            {
                return;                     // Just skip if there is no space
            }
            // Get the last word in this buffer
            WordBuf wLast = this.words[this.words.Count - 1];

            wLast.bEnd = true;
        }
Ejemplo n.º 3
0
        public void addStart(String sStartTime)
        {
            // Validate
            if (this.words.Count == 0)
            {
                return;                     // Just skip if there is no space
            }
            // Get the last word in this buffer
            WordBuf wLast = this.words[this.words.Count - 1];

            wLast.s = sStartTime;
        }