Class GEarthOptions
Specifies the options to be used by GEarthExtension.
public sealed record GEarthOptions : IEquatable<GEarthOptions>
- Inheritance
-
GEarthOptions
- Implements
Constructors
GEarthOptions()
public GEarthOptions()
Properties
Author
The author of the extension.
public string Author { get; init; }
Property Value
Description
The description of the extension.
public string Description { get; init; }
Property Value
Name
The name of the extension.
public string Name { get; init; }
Property Value
ShowDeleteButton
Specifies whether to show the delete button in G-Earth after the user disconnects from the extension.
Defaults to true
.
public bool ShowDeleteButton { get; init; }
Property Value
ShowLeaveButton
Specifies whether to show the leave button in G-Earth.
Defaults to true
.
public bool ShowLeaveButton { get; init; }
Property Value
Version
The version of the extension.
public string Version { get; init; }