Version

WorkbookColorTransform Constructor

Creates a new WorkbookColorTransform instance with the specified color transform values.
Syntax
'Declaration
 
Public Function New( _
   Optional ByVal alpha As System.Nullable(Of Double), _
   Optional ByVal luminanceModulation As System.Nullable(Of Double), _
   Optional ByVal luminanceOffset As System.Nullable(Of Double), _
   Optional ByVal shade As System.Nullable(Of Double) _
)
public WorkbookColorTransform( 
   System.Nullable<double> alpha,
   System.Nullable<double> luminanceModulation,
   System.Nullable<double> luminanceOffset,
   System.Nullable<double> shade
)

Parameters

alpha
The value of the Alpha property or null.
luminanceModulation
The value of the LuminanceModulation property or null.
luminanceOffset
The value of the LuminanceOffset property or null.
shade
The value of the Shade property or null.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeExceptionalpha is outside the range of 0 to 1.0, inclusive.
Remarks

This class is immutable; as such, all properties are read-only.

Property values can only be specified at the time of instance creation.

Requirements

Target Platforms: Windows 8.1, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

View on GitHub