Java Swing Tutorial - Java SystemColor ACTIVE_CAPTION_BORDER








Syntax

SystemColor.ACTIVE_CAPTION_BORDER has the following syntax.

public static final int ACTIVE_CAPTION_BORDER

Example

In the following code shows how to use SystemColor.ACTIVE_CAPTION_BORDER field.

import java.awt.SystemColor;

public class Main {
  public static void main(String[] args) {
     System.out.println(SystemColor.ACTIVE_CAPTION_BORDER);

  }
}

The code above generates the following result.