WMEncoder.AutoIndex

Windows Media Encoder SDK banner art

The AutoIndex property specifies and retrieves a Boolean value indicating whether the archive file will be indexed after the encoding process is complete.

Syntax

WMEncoder.AutoIndex = Boolean
Boolean = WMEncoder.AutoIndex

Parameters

This property takes no parameters.

Property Value

A Boolean indicating whether the encoded content will be automatically indexed after it is archived.

Example Code

' Create a WMEncoder object.
Dim Encoder As WMEncoder
Set Encoder = New WMEncoder
Dim bAutoIndex As Boolean

' Configure the encoding session to archive encoded content.
' For a complete example, see either the IWMEncFile object or the
' IWMEncFileArchiveStats object.

' Specify the AutoIndex property.
Encoder.AutoIndex = True

' Retrieve the Boolean value.
bAutoIndex = Encoder.AutoIndex

Requirements

Reference: Windows Media Encoder

Library: wmenc.exe

See Also