Excel
Propiedades de VBA
Selection.Font.Italic = True //Cursiva Selection.Font.Bold = True //Negritas Selection.Font.Name = “Arial” //Fuente Selection.Font.Size= 5 //Tamaño Selection.Font.Underline = xlUnderlineStyleSingle //Interlineado Simple Selection.Font.Underline = xlUnderlineStyleDouble //Interlineado Doble Selection.Interior.Color = RGB(200,160,27) //Color de fondo RGB Selection.Interior.ColorIndex = 5 Leer más…