Share

Autodesk.AutoCAD.GraphicsInterface.VSFaceModifiers Enumeration

Description

This .NET class wraps the ObjectARX bitfield enum AcGiVisualStyleProperties::FaceModifier.

It describes modifications to faces made before any lighting and shading calculations have been performed.

C#

public enum VSFaceModifiers {
  None,
  FaceOpacityFlag,
  SpecularFlag
}

Visual Basic

Public Enum VSFaceModifiers
  None
  FaceOpacityFlag
  SpecularFlag
End Enum

Members

Members Description
None Apply no face modifiers to the faces.
FaceOpacityFlag Apply an opacity value to the faces. If unset, faces are displayed with full opacity. If set, faces are displayed with a specified degree of opacity from completely opaque to completely transparent.
SpecularFlag Apply a specular highlight (indicating reflection and shininess values) to a material that is applied to the faces.

Was this information helpful?