Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/04/2008, 02:19
Insomnia
 
Fecha de Ingreso: noviembre-2005
Mensajes: 751
Antigüedad: 19 años, 6 meses
Puntos: 13
Re: La propiedad es de solo escritura

Hola

Tambien puedes utilizar la propiedad VtFont, para poner el texto en negrita y subrayado:

Código:
    MSChart1.Title.VtFont.Style = VtFontStyleBold
    MSChart1.Title.VtFont.Effect = VtFontEffectUnderline
Copio y pego el ejemplo que aparece en el MSDN sobre la propiedad VtFont

Código:
   With MSChart1.Title.VtFont
      .Name = "Times New Roman"
      .Size = 18
      .Style = VtFontStyleBold Or _
      VtFontStyleItalic
      ' Utiliza Tachado y Subrayado en el texto.
      .Effect = VtFontEffectStrikeThrough Or _
      VtFontEffectUnderline
      ' Establece el color del texto a azul.
      .VtColor.Set 0, 0, 255
   End With
Agur.