Movie Maker Timeline Control

SetThemeBg Method

Description

Customize background theme of Timeline Control.

Syntax

Public Function SetThemeBg( _
   ByVal iType as integer, _
   ByVal color as color 
 )

 

Parameter

iType
   0 - Panel
   1 - Track
   2 - Track Title
   3 - Content
   4 - Time Scale
   5 - Scroll Bar
   6 - Scroll Bar Item
   7 - Tooltips
   8 - SeekBar


No Return Value

 

Example

Visual Basic.NET  Syntax
 If ColorDialog1.ShowDialog() = DialogResult.OK Then
AxTimelineControl1.SetThemeBg(cboBgTheme.SelectedIndex, Color2Uint32(ColorDialog1.Color))
End If