Function CreateTexture creates a new texture object with default values.
FUNCTION CreateTexture : HANDLE;def vs.CreateTexture():
return HANDLECreates a new texture object handle with default values
resultH := CreateTexture;import vs
# Function CreateTexture creates a new texture object with default values.
objHandle = vs.CreateTexture()
if objHandle is not None:
vs.Message('Created object handle: ' + str(objHandle))Availability: from VectorWorks8.0