ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorLightSource Class / Position Property




In This Topic
    Position Property (ImGearVectorLightSource)
    In This Topic
    Gets or sets a light source position. The position is presented as a vector of three coordinates (x, y, z).
    Syntax
    'Declaration
     
    Public Property Position As Single()
    'Usage
     
    Dim instance As ImGearVectorLightSource
    Dim value() As Single
     
    instance.Position = value
     
    value = instance.Position
    public float[] Position {get; set;}
    public: __property float[]* get_Position();
    public: __property void set_Position( 
       float[][]* value
    );
    public:
    property array<float>^ Position {
       array<float>^ get();
       void set (    array<float>^ value);
    }

    Property Value

    An array of three point coordinates - x, y and z.
    Remarks
    The default value is (0, 0, 0).
    See Also