KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > ISpeechTextSelectionInformation


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 /**
7  * ISpeechTextSelectionInformation Interface
8  */

9 @IID("{3B9C7E7A-6EEE-4DED-9092-11657279ADBE}")
10 public interface ISpeechTextSelectionInformation extends Com4jObject {
11     /**
12      * ActiveOffset
13      */

14     @VTID(7)
15     void activeOffset(
16         int activeOffset);
17
18     /**
19      * ActiveOffset
20      */

21     @VTID(8)
22     int activeOffset();
23
24     /**
25      * ActiveLength
26      */

27     @VTID(9)
28     void activeLength(
29         int activeLength);
30
31     /**
32      * ActiveLength
33      */

34     @VTID(10)
35     int activeLength();
36
37     /**
38      * SelectionOffset
39      */

40     @VTID(11)
41     void selectionOffset(
42         int selectionOffset);
43
44     /**
45      * SelectionOffset
46      */

47     @VTID(12)
48     int selectionOffset();
49
50     /**
51      * SelectionLength
52      */

53     @VTID(13)
54     void selectionLength(
55         int selectionLength);
56
57     /**
58      * SelectionLength
59      */

60     @VTID(14)
61     int selectionLength();
62
63 }
64
Popular Tags