Gets or sets the border color light of the calculator editor window.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Gets or sets the border color light of the calculator editor window.")>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.DefaultValueAttribute()>
<ISNet.Serialization.XmlSerializableAttribute(XmlSerializationType.ClientAndLayout)>
<System.ComponentModel.CategoryAttribute("Appearance")>
Public Property BorderColorLight As System.Drawing.Color |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As CalculatorEditor
Dim value As System.Drawing.Color
instance.BorderColorLight = value
value = instance.BorderColorLight |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets the border color light of the calculator editor window.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(XmlSerializationType.ClientAndLayout)]
[System.ComponentModel.CategoryAttribute("Appearance")]
public System.Drawing.Color BorderColorLight {get; set;} |
Delphi | |
---|
public read-write property BorderColorLight: System.Drawing.Color; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Gets or sets the border color light of the calculator editor window.")
System.ComponentModel.NotifyParentPropertyAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.DefaultValueAttribute()
ISNet.Serialization.XmlSerializableAttribute(XmlSerializationType.ClientAndLayout)
System.ComponentModel.CategoryAttribute("Appearance")
public function get,set BorderColorLight : System.Drawing.Color |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets the border color light of the calculator editor window.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(XmlSerializationType.ClientAndLayout)]
[System.ComponentModel.CategoryAttribute("Appearance")]
public: __property System.Drawing.Color get_BorderColorLight();
public: __property void set_BorderColorLight(
System.Drawing.Color value
); |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets the border color light of the calculator editor window.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.XmlSerializableAttribute(XmlSerializationType.ClientAndLayout)]
[System.ComponentModel.CategoryAttribute("Appearance")]
public:
property System.Drawing.Color BorderColorLight {
System.Drawing.Color get();
void set ( System.Drawing.Color value);
} |
Property Value
A
BorderColorDark that contains the border color light of the calculator editor window. The default value is
Color.Empty
.
Remarks
Requirements
Target Platforms: 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