DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub MetinkutusufontveBoyut()
Dim aframe As Frame
'metin kutusu font ve boyut ayarlamak.
For Each aframe In ActiveDocument.Frames
aframe.Select
With Selection
.Font.Name = "Times New Roman"
.Font.Size = 14
.Frames(1).WidthRule = wdFrameAuto
.Frames(1).HeightRule = wdFrameAuto
End With
Next aframe
End Sub
Evet Word dosyası için.
Şu satırı
Kod:Dim aframe As Frame For Each aframe In ActiveDocument.Frames
Şununla değiştirip dener misiniz
Kod:Dim aframe As Shape For Each aframe In ActiveDocument.Shapes
Harici siteye küçük bir örnek dosya ekleyebilir misiniz?
Harici siteye yükledimBen ekli dosyayı göremiyorum
Sub MetinkutusufontveBoyut()
'metin kutusu font ve boyut ayarlamak.
Dim aframe As Shape
For Each aframe In ActiveDocument.Shapes
aframe.Select
With aframe
.Width = CentimetersToPoints(9) 'genişlik 9 cm
.TextFrame.TextRange.Font.NameBi = "Shaikh Hamdullah Mushaf"
.TextFrame.TextRange.Font.SizeBi = 12
.TextFrame.TextRange.ParagraphFormat.Alignment = wdAlignParagraphJustify 'paragraf ikiyana yasla
.TextFrame.AutoSize = msoAutoSizeTextToFitShape 'Yükseklik otomatik
End With
Next
End Sub
Kod:Sub MetinkutusufontveBoyut() 'metin kutusu font ve boyut ayarlamak. Dim aframe As Shape For Each aframe In ActiveDocument.Shapes aframe.Select With aframe .Width = CentimetersToPoints(9) 'genişlik 9 cm .TextFrame.TextRange.Font.NameBi = "Shaikh Hamdullah Mushaf" .TextFrame.TextRange.Font.SizeBi = 12 .TextFrame.TextRange.ParagraphFormat.Alignment = wdAlignParagraphJustify 'paragraf ikiyana yasla .TextFrame.AutoSize = msoAutoSizeTextToFitShape 'Yükseklik otomatik End With Next End Sub
