ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorView Class / CullFace Property




In This Topic
    CullFace Property
    In This Topic
    Gets or sets face culling mode for the view.
    Syntax
    'Declaration
     
    Public Property CullFace As ImGearVectCullFace
    'Usage
     
    Dim instance As ImGearVectorView
    Dim value As ImGearVectCullFace
     
    instance.CullFace = value
     
    value = instance.CullFace
    public ImGearVectCullFace CullFace {get; set;}
    public: __property ImGearVectCullFace get_CullFace();
    public: __property void set_CullFace( 
       ImGearVectCullFace value
    );
    public:
    property ImGearVectCullFace CullFace {
       ImGearVectCullFace get();
       void set (    ImGearVectCullFace value);
    }

    Property Value

    ImGearVectCullFace enumeration.
    Remarks
    Face culling mode specifies whether to render both front- and back-facing facets, only front-facing or only back-facing ones. The default value is ImGearVectCullFace.NONE.
    See Also