Convert the Color Structure in. NET to the IRgbColor interface in ArcGIS Engine.

Source: Internet
Author: User

# Region converts the Color Structure in. NET to the IRgbColor interface in ArcGIS Engine.
/// <Summary>
/// Convert the Color Structure in. NET to the IRgbColor interface in ArcGIS Engine.
/// </Summary>
/// <Param name = "color"> the System. Drawing. Color Structure in. NET indicates the ARGB color. </param>
/// <Returns> IRgbColor </returns>
Public static IRgbColor ConvertColorToIRgbColor (Color color)
{
IRgbColor pRgbColor = new RgbColorClass ();
PRgbColor. RGB = color. B * 65536 + color. G * 256 + color. R;
Return pRgbColor;
}
# Endregion

# Region converts the Color Structure in. NET to the IColor interface in ArcGIS Engine.
/// <Summary>
/// Convert the Color Structure in. NET to the IColor interface in ArcGIS Engine
/// </Summary>
/// <Param name = "color"> the System. Drawing. Color Structure in. NET indicates the ARGB color. </param>
/// <Returns> IColor </returns>
Public static IColor ConvertColorToIColor (Color color)
{
IColor pColor = new RgbColorClass ();
PColor. RGB = color. B * 65536 + color. G * 256 + color. R;
Return pColor;
}
# Endregion

# Region converts the IRgbColor interface in ArcGIS Engine to the Color structure in. NET.
/// <Summary>
/// Convert the IRgbColor interface in ArcGIS Engine to the Color structure in. NET.
/// </Summary>
/// <Param name = "pRgbColor"> IRgbColor </param>
/// <Returns> the System. Drawing. Color Structure in. NET indicates the ARGB Color. </returns>
Public static Color ConvertIRgbColorToColor (IRgbColor pRgbColor)
{
Return ColorTranslator. FromOle (pRgbColor. RGB );
}
# Endregion

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.