Selection.StartIsActive Property
Determines if the beginning of the selection is active.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Property StartIsActive As Boolean
Get
Set
'Usage
Dim instance As Selection
Dim value As Boolean
value = instance.StartIsActive
instance.StartIsActive = value
bool StartIsActive { get; set; }
Property Value
Type: System.Boolean
Remarks
This property returns True if the beginning of the selection is active and False if not.
If the selection is not collapsed to an insertion point, either the beginning or the end of the selection is active. The active end of the selection moves when you call the following methods: EndKey, Extend (with the Characters argument), HomeKey, MoveDown, MoveLeft, MoveRight, and MoveUp.
This property is equivalent to using the Flags property with the wdSelStartActive constant. However, using the Flags property requires binary operations, which are more complicated than using the StartIsActive property.