<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.byggvir.de/index.php?action=history&amp;feed=atom&amp;title=Shapes_%28VBA%29</id>
	<title>Shapes (VBA) - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.byggvir.de/index.php?action=history&amp;feed=atom&amp;title=Shapes_%28VBA%29"/>
	<link rel="alternate" type="text/html" href="https://wiki.byggvir.de/index.php?title=Shapes_(VBA)&amp;action=history"/>
	<updated>2026-05-25T15:04:15Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Thomas Wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.byggvir.de/index.php?title=Shapes_(VBA)&amp;diff=203&amp;oldid=prev</id>
		<title>Thomas: Erste Erstellung</title>
		<link rel="alternate" type="text/html" href="https://wiki.byggvir.de/index.php?title=Shapes_(VBA)&amp;diff=203&amp;oldid=prev"/>
		<updated>2016-09-22T11:44:20Z</updated>

		<summary type="html">&lt;p&gt;Erste Erstellung&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Geometrische Formen sind in VBA Shape-Objekte. Diese könne mit VBA erzeugt, geändert und gelöscht werden. Diagramme (Charts) sind speziellen Shapes-Objekte. &lt;br /&gt;
&lt;br /&gt;
Das folgende Unterprogramm setzt in Excel die Größe des ersten Diagrammes im aktiven Tabellenblatt auf 18cm x 24cm.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Sub SetDiagramSize()&lt;br /&gt;
&lt;br /&gt;
&amp;#039; Setzt die Größe &amp;quot;Diagramnmes&amp;quot; auf der ersten Seite des aktiven Tabellenblattes auf 18 cm x 24 cm. &lt;br /&gt;
&lt;br /&gt;
With ActiveSheet.Shapes(1)&lt;br /&gt;
  .Height = 510.2362204724&lt;br /&gt;
  .Width = 680.3149606299&lt;br /&gt;
  .LockAspectRatio = msoTrue&lt;br /&gt;
End With&lt;br /&gt;
     &lt;br /&gt;
End Sub&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Kategorie:Sub]]&lt;br /&gt;
[[Kategorie:Basic]]&lt;br /&gt;
[[Kategorie:VBA]]&lt;br /&gt;
[[Kategorie:Excel]]&lt;/div&gt;</summary>
		<author><name>Thomas</name></author>
	</entry>
</feed>