EnhEvent.IsInclude

[This is preliminary documentation and subject to change.]

The IsInclude property indicates whether the event includes a pre-existing enhancement stream into the current stream.

Syntax

object.IsInclude [ = lVal ] 
 

Parts

object
Object expression that resolves to an EnhEvent object.
lVal
Long that indicates whether the event includes a stream. If this value is non-zero, the event includes a stream. If it is zero, it does not.

QuickInfo

  Windows NT: Unsupported.
  Windows: Requires Windows 98.
  Windows CE: Unsupported.
  Header: Declared in stream.idl.
  Import Library: Included as a resource in stream.dll.
  Unicode: Yes.

See Also

Including One Enhancement Stream in Another

Examples

The following example tests whether the most recently added event includes a stream. As written, the following example will always display a message box that reads "This is an include event."

evs.AddText("0:32.0 Include MyStream.str")
Set e = evs.LastAdd
 
If e.IsInclude = 0 Then
  MsgBox "This is not an include event."
Else
  MsgBox "This is an include event."
End If