Bagikan melalui


Evidence.Locked Properti

Definisi

Mendapatkan atau menetapkan nilai yang menunjukkan apakah bukti dikunci.

public:
 property bool Locked { bool get(); void set(bool value); };
public bool Locked { get; set; }
member this.Locked : bool with get, set
Public Property Locked As Boolean

Nilai Properti

true jika bukti dikunci; jika tidak, false. Default adalah false.

Contoh

Contoh kode berikut menunjukkan penggunaan Locked properti . Contoh ini adalah bagian dari contoh yang lebih besar yang disediakan untuk Evidence kelas .

Console::WriteLine( "\nThe default value for the Locked property = {0}", myEvidence->Locked );
Console.WriteLine("\nThe default value for the Locked property = " + myEvidence.Locked.ToString());
Console.WriteLine((ControlChars.Lf & "The default value for the Locked property = " & myEvidence.Locked.ToString()))

Berlaku untuk