Table of Contents

Property Invisible

Namespace
ComfileTech.jControlsNF4
Assembly
ComfileTech.jControlsNF4.dll

Invisible

An invisible cursor for use on platforms that do not support the Hide() method.

public static Cursor Invisible { get; }

Property Value

Cursor

Examples

 public partial class Form1 : jForm
 {
    public Form3()
    {
        InitializeComponent();

        Cursor = Cfnet.jControlsNF4.Cursors.Invisible;
    }
}