/// <summary>
 /// Sets the private alignment fields during initialization.
 /// </summary>
 /// <param name="h">The value to initialize the HorizontalAlign property with.</param>
 /// <param name="v">The value to initialize the VerticalAlign property with.</param>
 protected void Initialize(FlashHorizontalAlignment h, FlashVerticalAlignment v)
 {
     this._halign = h;
     this._valign = v;
 }
 /// <summary>
 /// Allows you to initialize the class with a specific VerticalAlign and HorizontalAlign value.
 /// </summary>
 /// <param name="h">The value to initialize the HorizontalAlign property with.</param>
 /// <param name="v">The value to initialize the VerticalAlign property with.</param>
 public FlashMovieAlignment(FlashHorizontalAlignment h, FlashVerticalAlignment v)
 {
     this.Initialize(h, v);
 }