Object Model Reference : Classes : T : TextureFillProperty : Properties : TextureFillProperty.Name |
Property Name As String
Member of TextureFillProperty
The Name property returns the name of a texture-fill parameter.
The Name property returns a read-only value.
The following VBA example displays the name of the third parameter of the texture Fire Flies from the library Samples 9.
Sub Test() |
Dim s As Shape |
Dim tf As TextureFill |
Set s = ActiveLayer.CreateRectangle(0, 0, 2, 2) |
Set tf = s.Fill.ApplyTextureFill("Fire Flies", "Samples 9") |
MsgBox tf.Properties(3).Name |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.