You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21413 lines
860 KiB
21413 lines
860 KiB
<?xml version="1.0"?>
|
|
<doc>
|
|
<assembly>
|
|
<name>LibVLCSharp</name>
|
|
</assembly>
|
|
<members>
|
|
<member name="F:LibVLCSharp.Shared.Constants.LibrariesRepositoryFolderName">
|
|
<summary>
|
|
The name of the folder that contains the per-architecture folders
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Core">
|
|
<summary>
|
|
The Core class handles libvlc loading intricacies on various platforms as well as
|
|
the libvlc/libvlcsharp version match check.
|
|
</summary>
|
|
<summary>
|
|
The Core class handles libvlc loading intricacies on various platforms as well as
|
|
the libvlc/libvlcsharp version match check.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Core.Initialize(System.String)">
|
|
<summary>
|
|
Load the native libvlc library (if necessary, depending on platform)
|
|
<para/> Ensure that you installed the VideoLAN.LibVLC.[YourPlatform] package in your target project
|
|
<para/> This will throw a <see cref="T:LibVLCSharp.Shared.VLCException"/> if the native libvlc libraries cannot be found or loaded.
|
|
<para/> It may also throw a <see cref="T:LibVLCSharp.Shared.VLCException"/> if the LibVLC and LibVLCSharp major versions do not match.
|
|
See https://code.videolan.org/videolan/LibVLCSharp/-/blob/master/docs/versioning.md for more info about the versioning strategy.
|
|
</summary>
|
|
<param name="libvlcDirectoryPath">The path to the directory that contains libvlc and libvlccore
|
|
No need to specify unless running netstandard 1.1, or using custom location for libvlc
|
|
<para/> This parameter is NOT supported on Linux, use LD_LIBRARY_PATH instead.
|
|
</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Core.EnsureVersionsMatch">
|
|
<summary>
|
|
Checks whether the major version of LibVLC and LibVLCSharp match <para/>
|
|
Throws a VLCException if the major versions mismatch
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Dialog">
|
|
<summary>
|
|
Dialogs can be raised by libvlc for network actions and logins.
|
|
You may only call once PostLogin or PostAction or Dismiss after which this instance will be invalid.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Dialog.PostLogin(System.String,System.String,System.Boolean)">
|
|
<summary>
|
|
Post a login answer.
|
|
After this call, the instance won't be valid anymore
|
|
</summary>
|
|
<param name="username">valid non-empty string</param>
|
|
<param name="password">valid string</param>
|
|
<param name="store">if true stores the credentials</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Dialog.PostAction(System.Int32)">
|
|
<summary>
|
|
Post a question answer.
|
|
After this call, this instance won't be valid anymore
|
|
QuestionCb
|
|
</summary>
|
|
<param name="actionIndex">1 for action1, 2 for action2</param>
|
|
<returns>return true on success, false otherwise</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Dialog.Dismiss">
|
|
<summary>
|
|
Dismiss a dialog.
|
|
After this call, this instance won't be valid anymore
|
|
</summary>
|
|
<returns>true if properly dismissed, false otherwise</returns>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.DialogQuestionType">
|
|
<summary>
|
|
Describes the question type by libvlc
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.DialogQuestionType.Normal">
|
|
<summary>
|
|
Normal question
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.DialogQuestionType.Warning">
|
|
<summary>
|
|
Warning question
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.DialogQuestionType.Critical">
|
|
<summary>
|
|
Critical question
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.DisplayError">
|
|
<summary>
|
|
Called when an error message needs to be displayed.
|
|
</summary>
|
|
<param name="title">title of the dialog </param>
|
|
<param name="text">text of the dialog </param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.DisplayLogin">
|
|
<summary>
|
|
Called when a login dialog needs to be displayed.
|
|
You can interact with this dialog by calling PostLogin() to post an answer or Dismiss() to cancel this dialog.
|
|
</summary>
|
|
<param name="dialog">id used to interact with the dialog </param>
|
|
<param name="title">title of the dialog </param>
|
|
<param name="text">text of the dialog </param>
|
|
<param name="defaultUsername">user name that should be set on the user form</param>
|
|
<param name="askStore">if true, ask the user if he wants to save the credentials</param>
|
|
<param name="token">Use token to cancel operation</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.DisplayQuestion">
|
|
<summary>
|
|
Called when a question dialog needs to be displayed.
|
|
You can interact with this dialog by calling PostAction() to post an answer or Dismiss() to cancel this dialog.
|
|
</summary>
|
|
<param name="dialog">id used to interact with the dialog</param>
|
|
<param name="title">title of the dialog</param>
|
|
<param name="text">text of the dialog</param>
|
|
<param name="type">question type (or severity) of the dialog</param>
|
|
<param name="cancelText">text of the cancel button</param>
|
|
<param name="firstActionText">text of the first button, if NULL, don't display this button</param>
|
|
<param name="secondActionText">text of the second button, if NULL, don't display this button</param>
|
|
<param name="token">Use token to cancel operation</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.DisplayProgress">
|
|
<summary>
|
|
Called when a progress dialog needs to be displayed.
|
|
If cancellable cancelText is not NULL, you can cancel this dialog by calling libvlc_dialog_dismiss()
|
|
</summary>
|
|
<param name="dialog">id used to interact with the dialog</param>
|
|
<param name="title">title of the dialog</param>
|
|
<param name="text">text of the dialog</param>
|
|
<param name="indeterminate">true if the progress dialog is indeterminate</param>
|
|
<param name="position">initial position of the progress bar (between 0.0 and 1.0)</param>
|
|
<param name="cancelText">text of the cancel button, if NULL the dialog is not cancellable</param>
|
|
<param name="token">Use token to cancel operation</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.UpdateProgress">
|
|
<summary>
|
|
Called when a progress dialog needs to be updated.
|
|
</summary>
|
|
<param name="dialog">id of the dialog</param>
|
|
<param name="position">position of the progress bar (between 0.0 and 1.0)</param>
|
|
<param name="text">new text of the progress dialog </param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Equalizer">
|
|
<summary>
|
|
Equalizer settings can be applied to a media player using this type
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Equalizer.#ctor">
|
|
<summary>
|
|
Create a new default equalizer, with all frequency values zeroed.
|
|
The new equalizer can subsequently be applied to a media player by invoking
|
|
libvlc_media_player_set_equalizer().
|
|
version LibVLC 2.2.0 or later
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Equalizer.#ctor(System.UInt32)">
|
|
<summary>
|
|
Create a new equalizer, with initial frequency values copied from an existing preset.
|
|
The new equalizer can subsequently be applied to a media player by invoking
|
|
libvlc_media_player_set_equalizer().
|
|
version LibVLC 2.2.0 or later
|
|
</summary>
|
|
<param name="index">index of the preset, counting from zero</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Equalizer.SetPreamp(System.Single)">
|
|
<summary>
|
|
Set a new pre-amplification value for an equalizer.
|
|
The new equalizer settings are subsequently applied to a media player by invoking
|
|
MediaPlayer::setEqualizer().
|
|
The supplied amplification value will be clamped to the -20.0 to +20.0 range.
|
|
</summary>
|
|
<param name="preamp">preamp value (-20.0 to 20.0 Hz)</param>
|
|
LibVLC 2.2.0 or later
|
|
<returns>true on success, false otherwise</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Equalizer.Preamp">
|
|
<summary>
|
|
Get the current pre-amplification value from an equalizer.
|
|
return preamp value (Hz)
|
|
LibVLC 2.2.0 or later
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Equalizer.SetAmp(System.Single,System.UInt32)">
|
|
<summary>
|
|
Set a new amplification value for a particular equalizer frequency band.
|
|
The new equalizer settings are subsequently applied to a media player by invoking MediaPlayer::setEqualizer().
|
|
The supplied amplification value will be clamped to the -20.0 to +20.0 range.
|
|
LibVLC 2.2.0 or later
|
|
</summary>
|
|
<param name="amp">amplification value (-20.0 to 20.0 Hz)</param>
|
|
<param name="band">index, counting from zero, of the frequency band to set</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Equalizer.Amp(System.UInt32)">
|
|
<summary>
|
|
Get the amplification value for a particular equalizer frequency band.
|
|
LibVLC 2.2.0 or later
|
|
</summary>
|
|
<param name="band">index, counting from zero, of the frequency band to get</param>
|
|
<returns>amplification value (Hz); NaN if there is no such frequency band</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Equalizer.PresetCount">
|
|
<summary>
|
|
Get the number of equalizer presets.
|
|
LibVLC 2.2.0 or later
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Equalizer.PresetName(System.UInt32)">
|
|
<summary>
|
|
Get the name of a particular equalizer preset.
|
|
This name can be used, for example, to prepare a preset label or menu in a user interface.
|
|
</summary>
|
|
<param name="index">index of the preset, counting from zero</param>
|
|
<returns>preset name, or empty string if there is no such preset</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Equalizer.BandCount">
|
|
<summary>
|
|
Get the number of distinct frequency bands for an equalizer.
|
|
return number of frequency bands
|
|
LibVLC 2.2.0 or later
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Equalizer.BandFrequency(System.UInt32)">
|
|
<summary>
|
|
Get a particular equalizer band frequency.
|
|
This value can be used, for example, to create a label for an equalizer band control in a user interface.
|
|
LibVLC 2.2.0 or later
|
|
</summary>
|
|
<param name="index">index index of the band, counting from zero</param>
|
|
<returns>equalizer band frequency (Hz), or -1 if there is no such band</returns>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.EventManager.EventTypeManager">
|
|
<summary>
|
|
The class that manages one type of event
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.EventManager.Attach(LibVLCSharp.Shared.EventType,System.Action{System.IntPtr})">
|
|
<summary>
|
|
Increments the reference count to the event handler method.
|
|
</summary>
|
|
<param name="eventType">The event type</param>
|
|
<param name="eventHandler">The event handler for this event type</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerChangedEventArgs">
|
|
<summary>
|
|
The MediaPlayerChanged event indicates when a new MediaPlayer has been set up with the VideoView
|
|
and is ready to use for a first time playback.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerChangedEventArgs.#ctor(LibVLCSharp.Shared.MediaPlayer,LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
MediaPlayerChangedEventArgs constructor, used internally by LibVLCSharp
|
|
</summary>
|
|
<param name="oldMediaPlayer">The previous mediaplayer (if any)</param>
|
|
<param name="newMediaPlayer">The new mediaplayer (if any)</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerChangedEventArgs.OldMediaPlayer">
|
|
<summary>
|
|
The previous mediaplayer (if any)
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerChangedEventArgs.NewMediaPlayer">
|
|
<summary>
|
|
The new mediaplayer (if any)
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerChangingEventArgs">
|
|
<summary>
|
|
Internal event used by LibVLCSharp.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerChangingEventArgs.#ctor(LibVLCSharp.Shared.MediaPlayer,LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
MediaPlayerChangingEventArgs constructor, used internally by LibVLCSharp
|
|
</summary>
|
|
<param name="oldMediaPlayer">The previous mediaplayer (if any)</param>
|
|
<param name="newMediaPlayer">The new mediaplayer (if any)</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerChangingEventArgs.OldMediaPlayer">
|
|
<summary>
|
|
The previous mediaplayer (if any)
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerChangingEventArgs.NewMediaPlayer">
|
|
<summary>
|
|
The new mediaplayer (if any)
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.Structures.AudioOutputDescriptionStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">AudioOutputDescriptionStructure from interop</param>
|
|
<returns>public AudioOutputDescription to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.Structures.AudioOutputDeviceStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">AudioOutputDeviceStructure from interop</param>
|
|
<returns>public AudioOutputDevice to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.Structures.ModuleDescriptionStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">ModuleDescriptionStructure from interop</param>
|
|
<returns>public ModuleDescription to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.Structures.TrackDescriptionStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">TrackDescriptionStructure from interop</param>
|
|
<returns>public TrackDescription to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.Structures.ChapterDescriptionStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">ChapterDescriptionStructure from interop</param>
|
|
<returns>public ChapterDescription to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.MediaSlaveStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">MediaSlaveStructure from interop</param>
|
|
<returns>public MediaSlave to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.MediaTrackStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">TrackDescriptionStructure from interop</param>
|
|
<returns>public TrackDescription to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.SubtitleTrackStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">SubtitleTrackStructure from interop</param>
|
|
<returns>public SubtitleTrack to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.MediaDiscovererDescriptionStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">MediaDiscovererDescriptionStructure from interop</param>
|
|
<returns>public MediaDiscovererDescription to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.Build(LibVLCSharp.Shared.RendererDescriptionStructure)">
|
|
<summary>
|
|
Helper method that creates a user friendly type from the internal interop structure.
|
|
</summary>
|
|
<param name="s">RendererDescriptionStructure from interop</param>
|
|
<returns>public RendererDescription to be consumed by the user</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.ToUtf8(System.String)">
|
|
<summary>
|
|
Helper method that marshals a UTF16 managed string to a UTF8 native string ptr
|
|
</summary>
|
|
<param name="str">the managed string to marshal to native</param>
|
|
<returns>a ptr to the UTF8 string that needs to be freed after use</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalExtensions.FromUtf8(System.IntPtr,System.Boolean)">
|
|
<summary>
|
|
Helper method that mashals a UTF8 native string ptr to a UTF16 managed string.
|
|
Optionally frees the native string ptr
|
|
</summary>
|
|
<param name="nativeString">the native string to marshal to managed</param>
|
|
<param name="libvlcFree">frees the native pointer of the libvlc string (use only for char*)</param>
|
|
<returns>a managed UTF16 string</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.CreateWithOptions(System.String[],System.Func{System.Int32,System.IntPtr[],System.IntPtr})">
|
|
<summary>
|
|
Helper for libvlc_new
|
|
</summary>
|
|
<param name="options">libvlc options, an UTF16 string array turned to UTF8 string pointer array</param>
|
|
<param name="create">the create function call</param>
|
|
<returns>the result of the create function</returns>
|
|
<exception cref="T:LibVLCSharp.Shared.VLCException">Thrown when libvlc could not be created</exception>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.Retrieve``2(System.Func{System.IntPtr},System.Func{System.IntPtr,``0},System.Func{``0,``1},System.Func{``0,System.IntPtr},System.Action{System.IntPtr})">
|
|
<summary>
|
|
Generic marshalling function to retrieve structs from a libvlc linked list
|
|
</summary>
|
|
<typeparam name="T">Internal struct type</typeparam>
|
|
<typeparam name="TU">publicly facing struct type</typeparam>
|
|
<param name="getRef">Native libvlc call: retrieve collection start pointer from parent reference</param>
|
|
<param name="retrieve">Retrieve the internal struct by marshalling the native pointer</param>
|
|
<param name="create">Create a publicly facing struct from the internal struct values</param>
|
|
<param name="next">Access next element in the list</param>
|
|
<param name="releaseRef">Native libvlc call: release resources allocated with the getRef call</param>
|
|
<returns>An array of publicly facing struct types</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.Retrieve``2(System.IntPtr,LibVLCSharp.Shared.Helpers.MarshalUtils.ArrayOut,System.Func{System.IntPtr,``0},System.Func{``0,``1},System.Action{System.IntPtr,System.UInt32})">
|
|
<summary>
|
|
Generic marshalling function to retrieve structs from libvlc by reading from unmanaged memory with offsets
|
|
This supports uint libvlc signatures.
|
|
</summary>
|
|
<typeparam name="T">Internal struct type</typeparam>
|
|
<typeparam name="TU">publicly facing struct type</typeparam>
|
|
<param name="nativeRef">native reference of the parent</param>
|
|
<param name="getRef">Native libvlc call: retrieve collection start pointer from parent reference</param>
|
|
<param name="retrieve">Retrieve the internal struct by marshalling the native pointer</param>
|
|
<param name="create">Create a publicly facing struct from the internal struct values</param>
|
|
<param name="releaseRef">Native libvlc call: release the array allocated with the getRef call with the given element count</param>
|
|
<returns>An array of publicly facing struct types</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.Retrieve``2(System.IntPtr,LibVLCSharp.Shared.Helpers.MarshalUtils.ArrayLongOut,System.Func{System.IntPtr,``0},System.Func{``0,``1},System.Action{System.IntPtr,System.UIntPtr})">
|
|
<summary>
|
|
Generic marshalling function to retrieve structs from libvlc by reading from unmanaged memory with offsets
|
|
</summary>
|
|
<typeparam name="T">Internal struct type</typeparam>
|
|
<typeparam name="TU">publicly facing struct type</typeparam>
|
|
<param name="nativeRef">native reference of the parent</param>
|
|
<param name="getRef">Native libvlc call: retrieve collection start pointer from parent reference</param>
|
|
<param name="retrieve">Retrieve the internal struct by marshalling the native pointer</param>
|
|
<param name="create">Create a publicly facing struct from the internal struct values</param>
|
|
<param name="releaseRef">Native libvlc call: release the array allocated with the getRef call with the given element count</param>
|
|
<returns>An array of publicly facing struct types</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.Retrieve``3(System.IntPtr,``2,LibVLCSharp.Shared.Helpers.MarshalUtils.CategoryArrayOut{``2},System.Func{System.IntPtr,``0},System.Func{``0,``1},System.Action{System.IntPtr,System.UIntPtr})">
|
|
<summary>
|
|
Generic marshalling function to retrieve structs from libvlc by reading from unmanaged memory with offsets
|
|
This supports an additional enum configuration parameter.
|
|
</summary>
|
|
<typeparam name="T">Internal struct type</typeparam>
|
|
<typeparam name="TU">publicly facing struct type</typeparam>
|
|
<typeparam name="TE">Additional enum confugation type</typeparam>
|
|
<param name="nativeRef">native reference of the parent</param>
|
|
<param name="extraParam">Additional enum confugation type</param>
|
|
<param name="getRef">Native libvlc call: retrieve collection start pointer from parent reference</param>
|
|
<param name="retrieve">Retrieve the internal struct by marshalling the native pointer</param>
|
|
<param name="create">Create a publicly facing struct from the internal struct values</param>
|
|
<param name="releaseRef">Native libvlc call: release the array allocated with the getRef call with the given element count</param>
|
|
<returns>An array of publicly facing struct types</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.ToUtf8(System.String[])">
|
|
<summary>
|
|
Turns an array of UTF16 C# strings to an array of pointer to UTF8 strings
|
|
</summary>
|
|
<param name="args"></param>
|
|
<returns>Array of pointer you need to release when you're done with Marshal.FreeHGlobal</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.PtrToStructure``1(System.IntPtr)">
|
|
<summary>
|
|
Marshal a pointer to a struct
|
|
Helper with netstandard1.1 and net40 support
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
<param name="ptr"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.LibVLCFree(System.IntPtr@)">
|
|
<summary>
|
|
Frees an heap allocation returned by a LibVLC function.
|
|
If you know you're using the same underlying C run-time as the LibVLC
|
|
implementation, then you can call ANSI C free() directly instead.
|
|
</summary>
|
|
<param name="ptr">the pointer</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.PerformInteropAndFree``1(System.Func{``0},System.IntPtr[])">
|
|
<summary>
|
|
Performs the native call, frees the ptrs and returns the result
|
|
</summary>
|
|
<typeparam name="T"></typeparam>
|
|
<param name="interopCall"></param>
|
|
<param name="ptrs"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.PerformInteropAndFree(System.Action,System.IntPtr[])">
|
|
<summary>
|
|
Performs the native call and frees the ptrs
|
|
</summary>
|
|
<param name="interopCall"></param>
|
|
<param name="ptrs"></param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Helpers.MarshalUtils.GetInstance``1(System.IntPtr)">
|
|
<summary>
|
|
Gets the instance represented by the given handle.
|
|
This must be a GCHandle.
|
|
</summary>
|
|
<typeparam name="T">The type of instance to retrieve</typeparam>
|
|
<param name="handle">The handle given back by libvlc</param>
|
|
<returns>null if it is not a valid handle, the instance otherwise</returns>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.PlatformHelper">
|
|
<summary>
|
|
Small helper for determining the current platform
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.PlatformHelper.IsWindows">
|
|
<summary>
|
|
Returns true if running on Windows, false otherwise
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.PlatformHelper.IsLinux">
|
|
<summary>
|
|
Returns true if running on Linux, false otherwise
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.PlatformHelper.IsLinuxDesktop">
|
|
<summary>
|
|
Returns true if running on Linux desktop, false otherwise
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.PlatformHelper.IsMac">
|
|
<summary>
|
|
Returns true if running on macOS, false otherwise
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.PlatformHelper.IsX64BitProcess">
|
|
<summary>
|
|
Returns true if running in 64bit process, false otherwise
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Internal">
|
|
<summary>
|
|
This base class is used for the main libvlc types
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Internal.NativeReference">
|
|
<summary>
|
|
The pointer to the native code representation of this object
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Internal.Release">
|
|
<summary>
|
|
Release native resources by calling this C function
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Internal.IsDisposed">
|
|
<summary>
|
|
Indicates whether this object has already been disposed
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Internal.#ctor(System.Func{System.IntPtr},System.Action{System.IntPtr})">
|
|
<summary>
|
|
Base constructor for most libvlc objects. Will perform native calls.
|
|
</summary>
|
|
<param name="create">A create function that will return a pointer to the instance in native code</param>
|
|
<param name="release">A release Action that takes the native pointer to that C# instance's native code representation
|
|
and performs the release call in native code. It will be called once when the C# instance gets disposed.</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Internal.Dispose">
|
|
<summary>
|
|
Dispose of this instance
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Internal.Dispose(System.Boolean)">
|
|
<summary>
|
|
Dispose of this instance
|
|
</summary>
|
|
<param name="disposing">true if called from a method</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.IVideoControl">
|
|
<summary>
|
|
Interface for video control
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.IVideoControl.SizeChanged">
|
|
<summary>
|
|
Occurs when the size of the control changes
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.IVideoControl.Width">
|
|
<summary>
|
|
Gets the width of the video view
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.IVideoControl.Height">
|
|
<summary>
|
|
Gets the height of the video view
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.IVideoView">
|
|
<summary>
|
|
VideoView Interface
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.IVideoView.MediaPlayer">
|
|
<summary>
|
|
MediaPlayer object connected to the view
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.LibVLC">
|
|
<summary>
|
|
Main LibVLC API object representing a libvlc instance in native code.
|
|
Note: You may create multiple mediaplayers from a single LibVLC instance
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.Equals(LibVLCSharp.Shared.LibVLC)">
|
|
<summary>
|
|
Determines whether two object instances are equal.
|
|
</summary>
|
|
<param name="other">other libvlc instance to compare with</param>
|
|
<returns>true if same instance, false otherwise</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.Equals(System.Object)">
|
|
<summary>
|
|
Determines whether two object instances are equal.
|
|
</summary>
|
|
<param name="obj">other libvlc instance to compare with</param>
|
|
<returns>true if same instance, false otherwise</returns>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.LibVLC._log">
|
|
<summary>
|
|
The real log event handlers.
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.LibVLC._gcHandle">
|
|
<summary>
|
|
The GCHandle to be passed to callbacks as userData
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.GetHashCode">
|
|
<summary>
|
|
Returns the hashcode for this libvlc instance
|
|
</summary>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.#ctor(System.String[])">
|
|
<summary>
|
|
Create and initialize a libvlc instance.
|
|
This functions accept a list of "command line" arguments similar to the
|
|
main(). These arguments affect the LibVLC instance default configuration.
|
|
LibVLC may create threads. Therefore, any thread-unsafe process
|
|
initialization must be performed before calling libvlc_new(). In particular
|
|
and where applicable:
|
|
<para>- setlocale() and textdomain(),</para>
|
|
<para>- setenv(), unsetenv() and putenv(),</para>
|
|
<para>- with the X11 display system, XInitThreads()</para>
|
|
(see also libvlc_media_player_set_xwindow()) and
|
|
<para>- on Microsoft Windows, SetErrorMode().</para>
|
|
<para>- sigprocmask() shall never be invoked; pthread_sigmask() can be used.</para>
|
|
On POSIX systems, the SIGCHLD signalmust notbe ignored, i.e. the
|
|
signal handler must set to SIG_DFL or a function pointer, not SIG_IGN.
|
|
Also while LibVLC is active, the wait() function shall not be called, and
|
|
any call to waitpid() shall use a strictly positive value for the first
|
|
parameter (i.e. the PID). Failure to follow those rules may lead to a
|
|
deadlock or a busy loop.
|
|
Also on POSIX systems, it is recommended that the SIGPIPE signal be blocked,
|
|
even if it is not, in principles, necessary, e.g.:
|
|
On Microsoft Windows Vista/2008, the process error mode
|
|
SEM_FAILCRITICALERRORS flagmustbe set before using LibVLC.
|
|
On later versions, that is optional and unnecessary.
|
|
Also on Microsoft Windows (Vista and any later version), setting the default
|
|
DLL directories to SYSTEM32 exclusively is strongly recommended for
|
|
security reasons:
|
|
Arguments are meant to be passed from the command line to LibVLC, just like
|
|
VLC media player does. The list of valid arguments depends on the LibVLC
|
|
version, the operating system and platform, and set of available LibVLC
|
|
plugins. Invalid or unsupported arguments will cause the function to fail
|
|
(i.e. return NULL). Also, some arguments may alter the behaviour or
|
|
otherwise interfere with other LibVLC functions.
|
|
There is absolutely no warranty or promise of forward, backward and
|
|
cross-platform compatibility with regards to libvlc_new() arguments.
|
|
We recommend that you do not use them, other than when debugging.
|
|
<para/> This will throw a <see cref="T:LibVLCSharp.Shared.VLCException"/> if the native libvlc libraries cannot be found or loaded.
|
|
<para/> It may also throw a <see cref="T:LibVLCSharp.Shared.VLCException"/> if the LibVLC and LibVLCSharp major versions do not match.
|
|
See https://code.videolan.org/videolan/LibVLCSharp/-/blob/master/docs/versioning.md for more info about the versioning strategy.
|
|
<example>
|
|
<code>
|
|
// example <br/>
|
|
using var libvlc = new LibVLC("--verbose=2");
|
|
<br/> // or <br/>
|
|
using var libvlc = new LibVLC("--verbose", "2");
|
|
</code>
|
|
</example>
|
|
</summary>
|
|
<param name="options">list of arguments, in the form "--option=value"</param>
|
|
<returns>the libvlc instance or NULL in case of error</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.#ctor(System.Boolean,System.String[])">
|
|
<summary>
|
|
Create and initialize a libvlc instance.
|
|
This functions accept a list of "command line" arguments similar to the
|
|
main(). These arguments affect the LibVLC instance default configuration.
|
|
LibVLC may create threads. Therefore, any thread-unsafe process
|
|
initialization must be performed before calling libvlc_new(). In particular
|
|
and where applicable:
|
|
<para>- setlocale() and textdomain(),</para>
|
|
<para>- setenv(), unsetenv() and putenv(),</para>
|
|
<para>- with the X11 display system, XInitThreads()</para>
|
|
(see also libvlc_media_player_set_xwindow()) and
|
|
<para>- on Microsoft Windows, SetErrorMode().</para>
|
|
<para>- sigprocmask() shall never be invoked; pthread_sigmask() can be used.</para>
|
|
On POSIX systems, the SIGCHLD signalmust notbe ignored, i.e. the
|
|
signal handler must set to SIG_DFL or a function pointer, not SIG_IGN.
|
|
Also while LibVLC is active, the wait() function shall not be called, and
|
|
any call to waitpid() shall use a strictly positive value for the first
|
|
parameter (i.e. the PID). Failure to follow those rules may lead to a
|
|
deadlock or a busy loop.
|
|
Also on POSIX systems, it is recommended that the SIGPIPE signal be blocked,
|
|
even if it is not, in principles, necessary, e.g.:
|
|
On Microsoft Windows Vista/2008, the process error mode
|
|
SEM_FAILCRITICALERRORS flagmustbe set before using LibVLC.
|
|
On later versions, that is optional and unnecessary.
|
|
Also on Microsoft Windows (Vista and any later version), setting the default
|
|
DLL directories to SYSTEM32 exclusively is strongly recommended for
|
|
security reasons:
|
|
Arguments are meant to be passed from the command line to LibVLC, just like
|
|
VLC media player does. The list of valid arguments depends on the LibVLC
|
|
version, the operating system and platform, and set of available LibVLC
|
|
plugins. Invalid or unsupported arguments will cause the function to fail
|
|
(i.e. return NULL). Also, some arguments may alter the behaviour or
|
|
otherwise interfere with other LibVLC functions.
|
|
There is absolutely no warranty or promise of forward, backward and
|
|
cross-platform compatibility with regards to libvlc_new() arguments.
|
|
We recommend that you do not use them, other than when debugging.
|
|
<para/> This will throw a <see cref="T:LibVLCSharp.Shared.VLCException"/> if the native libvlc libraries cannot be found or loaded.
|
|
<para/> It may also throw a <see cref="T:LibVLCSharp.Shared.VLCException"/> if the LibVLC and LibVLCSharp major versions do not match.
|
|
See https://code.videolan.org/videolan/LibVLCSharp/-/blob/master/docs/versioning.md for more info about the versioning strategy.
|
|
</summary>
|
|
<param name="enableDebugLogs">enable verbose debug logs</param>
|
|
<param name="options">list of arguments (should be NULL)</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.PatchOptions(System.String[],System.Boolean)">
|
|
<summary>
|
|
Make dirty hacks to include necessary defaults on some platforms.
|
|
</summary>
|
|
<param name="options">The options given by the user</param>
|
|
<param name="enableDebugLogs">enable debug logs</param>
|
|
<returns>The patched options</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.Dispose(System.Boolean)">
|
|
<summary>
|
|
Dispose of this libvlc instance
|
|
</summary>
|
|
<param name="disposing"></param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.op_Equality(LibVLCSharp.Shared.LibVLC,LibVLCSharp.Shared.LibVLC)">
|
|
<summary>
|
|
Determines whether 2 instances of libvlc are equals
|
|
</summary>
|
|
<param name="libvlc1">1st instance of libvlc</param>
|
|
<param name="libvlc2">2nd instance of libvlc</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.op_Inequality(LibVLCSharp.Shared.LibVLC,LibVLCSharp.Shared.LibVLC)">
|
|
<summary>
|
|
Determines whether 2 instances of libvlc are different
|
|
</summary>
|
|
<param name="libvlc1">1st instance of libvlc</param>
|
|
<param name="libvlc2">2nd instance of libvlc</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.SetExitHandler(LibVLCSharp.Shared.ExitCallback)">
|
|
<summary>
|
|
<para>Registers a callback for the LibVLC exit event. This is mostly useful if</para>
|
|
<para>the VLC playlist and/or at least one interface are started with</para>
|
|
<para>libvlc_playlist_play() or libvlc_add_intf() respectively.</para>
|
|
<para>Typically, this function will wake up your application main loop (from</para>
|
|
<para>another thread).</para>
|
|
</summary>
|
|
<param name="cb">
|
|
<para>callback to invoke when LibVLC wants to exit,</para>
|
|
<para>or NULL to disable the exit handler (as by default)</para>
|
|
</param>
|
|
<remarks>
|
|
<para>This function should be called before the playlist or interface are</para>
|
|
<para>started. Otherwise, there is a small race condition: the exit event could</para>
|
|
<para>be raised before the handler is registered.</para>
|
|
<para>This function and libvlc_wait() cannot be used at the same time.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.SetUserAgent(System.String,System.String)">
|
|
<summary>
|
|
<para>Sets the application name. LibVLC passes this as the user agent string</para>
|
|
<para>when a protocol requires it.</para>
|
|
</summary>
|
|
<param name="name">human-readable application name, e.g. "FooBar player 1.2.3"</param>
|
|
<param name="http">HTTP User Agent, e.g. "FooBar/1.2.3 Python/2.6.0"</param>
|
|
<remarks>LibVLC 1.1.1 or later</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.SetAppId(System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Sets some meta-information about the application.</para>
|
|
<para>See also libvlc_set_user_agent().</para>
|
|
</summary>
|
|
<param name="id">Java-style application identifier, e.g. "com.acme.foobar"</param>
|
|
<param name="version">application version numbers, e.g. "1.2.3"</param>
|
|
<param name="icon">application icon name, e.g. "foobar"</param>
|
|
<remarks>LibVLC 2.1.0 or later.</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.LibVLC.Log">
|
|
<summary>
|
|
The event that is triggered when a log is emitted from libVLC.
|
|
Listening to this event will discard the default logger in libvlc.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.AudioFilters">
|
|
<summary>Returns a list of audio filters that are available.</summary>
|
|
<returns>
|
|
<para>a list of module descriptions. It should be freed with libvlc_module_description_list_release().</para>
|
|
<para>In case of an error, NULL is returned.</para>
|
|
</returns>
|
|
<remarks>
|
|
<para>libvlc_module_description_t</para>
|
|
<para>libvlc_module_description_list_release</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.VideoFilters">
|
|
<summary>Returns a list of video filters that are available.</summary>
|
|
<returns>
|
|
<para>a list of module descriptions. It should be freed with libvlc_module_description_list_release().</para>
|
|
<para>In case of an error, NULL is returned.</para>
|
|
</returns>
|
|
<remarks>
|
|
<para>libvlc_module_description_t</para>
|
|
<para>libvlc_module_description_list_release</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.AudioOutputs">
|
|
<summary>Gets the list of available audio output modules.</summary>
|
|
<returns>list of available audio outputs. It must be freed with</returns>
|
|
<remarks>
|
|
<para>libvlc_audio_output_list_release</para>
|
|
<para>libvlc_audio_output_t .</para>
|
|
<para>In case of error, NULL is returned.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.AudioOutputDevices(System.String)">
|
|
<summary>Gets a list of audio output devices for a given audio output module,</summary>
|
|
<param name="audioOutputName">
|
|
<para>audio output name</para>
|
|
<para>(as returned by libvlc_audio_output_list_get())</para>
|
|
</param>
|
|
<returns>
|
|
<para>A NULL-terminated linked list of potential audio output devices.</para>
|
|
<para>It must be freed with libvlc_audio_output_device_list_release()</para>
|
|
</returns>
|
|
<remarks>
|
|
<para>libvlc_audio_output_device_set().</para>
|
|
<para>Not all audio outputs support this. In particular, an empty (NULL)</para>
|
|
<para>list of devices doesnotimply that the specified audio output does</para>
|
|
<para>not work.</para>
|
|
<para>The list might not be exhaustive.</para>
|
|
<para>Some audio output devices in the list might not actually work in</para>
|
|
<para>some circumstances. By default, it is recommended to not specify any</para>
|
|
<para>explicit audio device.</para>
|
|
<para>LibVLC 2.1.0 or later.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.MediaDiscoverers(LibVLCSharp.Shared.MediaDiscovererCategory)">
|
|
<summary>Get media discoverer services by category</summary>
|
|
<param name="discovererCategory">category of services to fetch</param>
|
|
<returns>the number of media discoverer services (0 on error)</returns>
|
|
<remarks>LibVLC 3.0.0 and later.</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.SetDialogHandlers(LibVLCSharp.Shared.DisplayError,LibVLCSharp.Shared.DisplayLogin,LibVLCSharp.Shared.DisplayQuestion,LibVLCSharp.Shared.DisplayProgress,LibVLCSharp.Shared.UpdateProgress)">
|
|
<summary>
|
|
Register callbacks in order to handle VLC dialogs.
|
|
LibVLC 3.0.0 and later.
|
|
</summary>
|
|
<param name="error">Called when an error message needs to be displayed.</param>
|
|
<param name="login">Called when a login dialog needs to be displayed.
|
|
You can interact with this dialog by calling Dialog.PostLogin() to post an answer or Dialog.Dismiss() to cancel this dialog.</param>
|
|
<param name="question">Called when a question dialog needs to be displayed.
|
|
You can interact with this dialog by calling Dialog.PostLogin() to post an answer or Dialog.Dismiss() to cancel this dialog.</param>
|
|
<param name="displayProgress">Called when a progress dialog needs to be displayed.</param>
|
|
<param name="updateProgress">Called when a progress dialog needs to be updated.</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.UnsetDialogHandlers">
|
|
<summary>
|
|
Unset dialog callbacks if previously set
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.DialogHandlersSet">
|
|
<summary>
|
|
True if dialog handlers are set
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.RendererList">
|
|
<summary>
|
|
List of available renderers used to create RendererDiscoverer objects
|
|
Note: LibVLC 3.0.0 and later
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.GetLogContext(System.IntPtr,System.String@,System.String@,System.Nullable{System.UInt32}@)">
|
|
<summary>
|
|
Gets log message debug infos.
|
|
|
|
This function retrieves self-debug information about a log message:
|
|
- the name of the VLC module emitting the message,
|
|
- the name of the source code module (i.e.file) and
|
|
- the line number within the source code module.
|
|
|
|
The returned module name and file name will be NULL if unknown.
|
|
The returned line number will similarly be zero if unknown.
|
|
</summary>
|
|
<param name="logContext">The log message context (as passed to the <see cref="T:LibVLCSharp.Shared.LibVLC.InternalLogCallback"/>)</param>
|
|
<param name="module">The module name storage.</param>
|
|
<param name="file">The source code file name storage.</param>
|
|
<param name="line">The source code file line number storage.</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.Retain">
|
|
<summary>Increments the native reference counter for this libvlc instance</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.Version">
|
|
<summary>The version of the LibVLC engine currently used by LibVLCSharp</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.Changeset">
|
|
<summary>The changeset of the LibVLC engine currently used by LibVLCSharp</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.LastLibVLCError">
|
|
<summary>
|
|
A human-readable error message for the last LibVLC error in the calling
|
|
thread. The resulting string is valid until another error occurs (at least
|
|
until the next LibVLC call).
|
|
<para/> Null if no error.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.LibVLC.ClearLibVLCError">
|
|
<summary>
|
|
Clears the LibVLC error status for the current thread. This is optional.
|
|
By default, the error status is automatically overridden when a new error
|
|
occurs, and destroyed when the thread exits.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LibVLC.LibVLCCompiler">
|
|
<summary>
|
|
Retrieve the libvlc compiler version.
|
|
Example: "gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu6)"
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.LibVLC.InternalExitCallback">
|
|
<summary>
|
|
Registers a callback for the LibVLC exit event.
|
|
This is mostly useful if the VLC playlist and/or at least one interface are started with libvlc_playlist_play()
|
|
or AddInterface() respectively. Typically, this function will wake up your application main loop (from another thread).
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.LogLevel">
|
|
<summary>Logging messages level.</summary>
|
|
<remarks>Future LibVLC versions may define new levels.</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.LogLevel.Debug">
|
|
<summary>Debug message</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.LogLevel.Notice">
|
|
<summary>Important informational message</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.LogLevel.Warning">
|
|
<summary>Warning (potential error) message</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.LogLevel.Error">
|
|
<summary>Error message</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.ExitCallback">
|
|
<summary>
|
|
Registers a callback for the LibVLC exit event.
|
|
This is mostly useful if the VLC playlist and/or at least one interface are started with libvlc_playlist_play()
|
|
or AddInterface() respectively. Typically, this function will wake up your application main loop (from another thread).
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.EventType">
|
|
<summary>LibVLCEvent types</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.MediaDiscovererStarted">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_start()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.MediaDiscovererStopped">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.RendererDiscovererItemAdded">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.RendererDiscovererItemDeleted">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaAdded">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaRemoved">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaChanged">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaInstanceStarted">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaInstanceStopped">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaInstanceStatusInit">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaInstanceStatusOpening">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaInstanceStatusPlaying">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaInstanceStatusPause">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaInstanceStatusEnd">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.EventType.VlmMediaInstanceStatusError">
|
|
<remarks>
|
|
<para>Useless event, it will be triggered only when calling</para>
|
|
<para>libvlc_media_discoverer_stop()</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.LibVLCEvent">
|
|
<summary>Renderer item</summary>
|
|
<remarks>
|
|
<para>This struct is passed by a</para>
|
|
<para>or deleted.</para>
|
|
<para>An item is valid until the</para>
|
|
<para>is called with the same pointer.</para>
|
|
<para>libvlc_renderer_discoverer_event_manager()</para>
|
|
</remarks>
|
|
<summary>A LibVLC event</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaMetaChangedEventArgs">
|
|
<summary>
|
|
Media metadata changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaMetaChangedEventArgs.MetadataType">
|
|
<summary>
|
|
Type of the metadata that changed
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaParsedChangedEventArgs">
|
|
<summary>
|
|
Media parsed status changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParsedChangedEventArgs.ParsedStatus">
|
|
<summary>
|
|
The new parsed status
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaSubItemAddedEventArgs">
|
|
<summary>
|
|
Media sub item added
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaSubItemAddedEventArgs.SubItem">
|
|
<summary>
|
|
The newly added media subitem
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaDurationChangedEventArgs">
|
|
<summary>
|
|
The duration of the media changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaDurationChangedEventArgs.Duration">
|
|
<summary>
|
|
The new media duration
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaFreedEventArgs">
|
|
<summary>
|
|
The media has been freed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaFreedEventArgs.Media">
|
|
<summary>
|
|
Freed media
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaStateChangedEventArgs">
|
|
<summary>
|
|
The state of the media changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStateChangedEventArgs.State">
|
|
<summary>
|
|
New media state
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaSubItemTreeAddedEventArgs">
|
|
<summary>
|
|
A media sub item tree has been added
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaSubItemTreeAddedEventArgs.SubItem">
|
|
<summary>
|
|
New media sub item tree
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerMediaChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's media changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerMediaChangedEventArgs.Media">
|
|
<summary>
|
|
New mediaplayer's media
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerBufferingEventArgs">
|
|
<summary>
|
|
The mediaplayer buffering information
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerBufferingEventArgs.Cache">
|
|
<summary>
|
|
Caching information
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerTimeChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's time changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerTimeChangedEventArgs.Time">
|
|
<summary>
|
|
Mediaplayer's current time
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerPositionChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's position changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerPositionChangedEventArgs.Position">
|
|
<summary>
|
|
Mediaplayer's current position
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerSeekableChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's seekable status changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerSeekableChangedEventArgs.Seekable">
|
|
<summary>
|
|
The new seekable capability
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerPausableChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's pausable status changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerPausableChangedEventArgs.Pausable">
|
|
<summary>
|
|
The new pausable capability
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerTitleChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's title changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerTitleChangedEventArgs.Title">
|
|
<summary>
|
|
The new title
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerChapterChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's chapter changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerChapterChangedEventArgs.Chapter">
|
|
<summary>
|
|
The new chapter
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerSnapshotTakenEventArgs">
|
|
<summary>
|
|
The mediaplayer had a snapshot taken
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerSnapshotTakenEventArgs.Filename">
|
|
<summary>
|
|
Filename of the newly taken snapshot
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerLengthChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's length changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerLengthChangedEventArgs.Length">
|
|
<summary>
|
|
The new mediaplayer length
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerVoutEventArgs">
|
|
<summary>
|
|
The mediaplayer's video output changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerVoutEventArgs.Count">
|
|
<summary>
|
|
Number of available video outputs
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerScrambledChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer scrambled status changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerScrambledChangedEventArgs.Scrambled">
|
|
<summary>
|
|
The scrambled status
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerESAddedEventArgs">
|
|
<summary>
|
|
The mediaplayer has a new Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerESAddedEventArgs.Id">
|
|
<summary>
|
|
The Id of the new Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerESAddedEventArgs.Type">
|
|
<summary>
|
|
The type of the new Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerESDeletedEventArgs">
|
|
<summary>
|
|
An Elementary Stream (ES) was deleted
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerESDeletedEventArgs.Id">
|
|
<summary>
|
|
The Id of the deleted Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerESDeletedEventArgs.Type">
|
|
<summary>
|
|
The type of the deleted Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerESSelectedEventArgs">
|
|
<summary>
|
|
An Elementary Stream (ES) was selected
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerESSelectedEventArgs.Id">
|
|
<summary>
|
|
The Id of the selected Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerESSelectedEventArgs.Type">
|
|
<summary>
|
|
The type of the seleted Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerAudioDeviceEventArgs">
|
|
<summary>
|
|
The mediaplayer's audio device changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerAudioDeviceEventArgs.AudioDevice">
|
|
<summary>
|
|
String describing the audio device
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerVolumeChangedEventArgs">
|
|
<summary>
|
|
The mediaplayer's volume changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerVolumeChangedEventArgs.Volume">
|
|
<summary>
|
|
The new volume
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaListBaseEventArgs">
|
|
<summary>
|
|
Base class for MediaList events
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaListBaseEventArgs.Media">
|
|
<summary>
|
|
Current node
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaListBaseEventArgs.Index">
|
|
<summary>
|
|
Current index
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaListBaseEventArgs.#ctor(LibVLCSharp.Shared.Media,System.Int32)">
|
|
<summary>
|
|
Default constructor
|
|
</summary>
|
|
<param name="media">Current node</param>
|
|
<param name="index">Current index</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaListItemAddedEventArgs">
|
|
<summary>
|
|
An item has been added to the MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaListWillAddItemEventArgs">
|
|
<summary>
|
|
An item is about to be added to the MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaListItemDeletedEventArgs">
|
|
<summary>
|
|
An item has been deleted from the MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaListWillDeleteItemEventArgs">
|
|
<summary>
|
|
An item is about to be deleted from the MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.RendererDiscovererItemAddedEventArgs">
|
|
<summary>
|
|
A new RendererItem has been found
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererDiscovererItemAddedEventArgs.RendererItem">
|
|
<summary>
|
|
The newly found RendererItem
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.RendererDiscovererItemDeletedEventArgs">
|
|
<summary>
|
|
A RendererItem has been deleted
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererDiscovererItemDeletedEventArgs.RendererItem">
|
|
<summary>
|
|
The deleted RendererItem
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.LogEventArgs">
|
|
<summary>
|
|
The LibVLC Log Event Arg
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LogEventArgs.Level">
|
|
<summary>
|
|
The severity of the log message.
|
|
By default, you will only get error messages, but you can get all messages by specifying "-vv" in the options.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LogEventArgs.Message">
|
|
<summary>
|
|
The log message
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LogEventArgs.Module">
|
|
<summary>
|
|
The name of the module that emitted the message
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LogEventArgs.SourceFile">
|
|
<summary>
|
|
The source file that emitted the message.
|
|
This may be <see langword="null"/> if that info is not available, i.e. always if you are using a release version of VLC.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LogEventArgs.SourceLine">
|
|
<summary>
|
|
The line in the <see cref="P:LibVLCSharp.Shared.LogEventArgs.SourceFile"/> at which the message was emitted.
|
|
This may be <see langword="null"/> if that info is not available, i.e. always if you are using a release version of VLC.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.LogEventArgs.FormattedLog">
|
|
<summary>
|
|
Helper property with already formatted log message
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Media">
|
|
<summary>
|
|
Media is an abstract representation of a playable media. It can be a network stream or a local video/audio file.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.#ctor(LibVLCSharp.Shared.LibVLC,System.String,LibVLCSharp.Shared.FromType,System.String[])">
|
|
<summary>
|
|
Media Constructs a libvlc Media instance
|
|
</summary>
|
|
<param name="libVLC">A libvlc instance</param>
|
|
<param name="mrl">A path, location, or node name, depending on the 3rd parameter</param>
|
|
<param name="type">The type of the 2nd argument.</param>
|
|
<param name="options">the libvlc options, in the form of ":your-option"</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.#ctor(LibVLCSharp.Shared.LibVLC,System.Uri,System.String[])">
|
|
<summary>
|
|
Media Constructs a libvlc Media instance
|
|
</summary>
|
|
<param name="libVLC">A libvlc instance</param>
|
|
<param name="uri">The absolute URI of the resource.</param>
|
|
<param name="options">the libvlc options, in the form of ":your-option"</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.#ctor(LibVLCSharp.Shared.LibVLC,System.Int32,System.String[])">
|
|
<summary>
|
|
Create a media for an already open file descriptor.
|
|
The file descriptor shall be open for reading(or reading and writing).
|
|
|
|
Regular file descriptors, pipe read descriptors and character device
|
|
descriptors(including TTYs) are supported on all platforms.
|
|
Block device descriptors are supported where available.
|
|
Directory descriptors are supported on systems that provide fdopendir().
|
|
Sockets are supported on all platforms where they are file descriptors,
|
|
i.e.all except Windows.
|
|
|
|
\note This library will <b>not</b> automatically close the file descriptor
|
|
under any circumstance.Nevertheless, a file descriptor can usually only be
|
|
rendered once in a media player.To render it a second time, the file
|
|
descriptor should probably be rewound to the beginning with lseek().
|
|
</summary>
|
|
<param name="libVLC">A libvlc instance</param>
|
|
<param name="fd">open file descriptor</param>
|
|
<param name="options">the libvlc options, in the form of ":your-option"</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.#ctor(LibVLCSharp.Shared.MediaList)">
|
|
<summary>
|
|
Create a media from a media list
|
|
</summary>
|
|
<param name="mediaList">media list to create media from</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.#ctor(LibVLCSharp.Shared.LibVLC,LibVLCSharp.Shared.MediaInput,System.String[])">
|
|
<summary>
|
|
Create a media from a MediaInput
|
|
requires libvlc 3.0 or higher
|
|
</summary>
|
|
<param name="libVLC">the libvlc instance</param>
|
|
<param name="input">the media to be used by libvlc. LibVLCSharp will NOT dispose or close it.
|
|
Use <see cref="T:LibVLCSharp.Shared.StreamMediaInput"/> or implement your own.</param>
|
|
<param name="options">the libvlc options, in the form of ":your-option"</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.AddOption(System.String)">
|
|
<summary>Add an option to the media.
|
|
<example>
|
|
<code>
|
|
// example <br/>
|
|
media.AddOption(":no-audio");
|
|
</code>
|
|
</example></summary>
|
|
<param name="option">the media option, in the form of ":your-option"</param>
|
|
<remarks>
|
|
<para>This option will be used to determine how the media_player will</para>
|
|
<para>read the media. This allows to use VLC's advanced</para>
|
|
<para>reading/streaming options on a per-media basis.</para>
|
|
<para>The options are listed in 'vlc --long-help' from the command line,</para>
|
|
<para>e.g. "-sout-all". Keep in mind that available options and their semantics</para>
|
|
<para>vary across LibVLC versions and builds.</para>
|
|
<para>Not all options affects libvlc_media_t objects:</para>
|
|
<para>Specifically, due to architectural issues most audio and video options,</para>
|
|
<para>such as text renderer options, have no effects on an individual media.</para>
|
|
<para>These options must be set through libvlc_new() instead.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.AddOption(LibVLCSharp.Shared.MediaConfiguration)">
|
|
<summary>
|
|
Convenience method for crossplatform media configuration
|
|
</summary>
|
|
<param name="mediaConfiguration">mediaConfiguration translate to strings parsed by the vlc engine, some are platform specific</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.AddOptionFlag(System.String,System.UInt32)">
|
|
<summary>Add an option to the media with configurable flags.</summary>
|
|
<param name="option">the media option</param>
|
|
<param name="flags">the flags for this option</param>
|
|
<remarks>
|
|
<para>This option will be used to determine how the media_player will</para>
|
|
<para>read the media. This allows to use VLC's advanced</para>
|
|
<para>reading/streaming options on a per-media basis.</para>
|
|
<para>The options are detailed in vlc --long-help, for instance</para>
|
|
<para>"--sout-all". Note that all options are not usable on medias:</para>
|
|
<para>specifically, due to architectural issues, video-related options</para>
|
|
<para>such as text renderer options cannot be set on a single media. They</para>
|
|
<para>must be set on the whole libvlc instance instead.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.Mrl">
|
|
<summary>Get the media resource locator (mrl) from a media descriptor object</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.Duplicate">
|
|
<summary>Duplicate a media descriptor object.</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.Meta(LibVLCSharp.Shared.MetadataType)">
|
|
<summary>Read the meta of the media.</summary>
|
|
<param name="metadataType">the meta to read</param>
|
|
<returns>the media's meta</returns>
|
|
<remarks>
|
|
If the media has not yet been parsed this will return NULL.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.SetMeta(LibVLCSharp.Shared.MetadataType,System.String)">
|
|
<summary>
|
|
<para>Set the meta of the media (this function will not save the meta, call</para>
|
|
<para>libvlc_media_save_meta in order to save the meta)</para>
|
|
</summary>
|
|
<param name="metadataType">the <see cref="T:LibVLCSharp.Shared.MetadataType"/> to write</param>
|
|
<param name="metaValue">the media's meta</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.SaveMeta">
|
|
<summary>Save the meta previously set</summary>
|
|
<returns>true if the write operation was successful</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.State">
|
|
<summary>
|
|
Get current <see cref="T:LibVLCSharp.Shared.VLCState"/> of media descriptor object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.Statistics">
|
|
<summary>Get the current statistics about the media
|
|
structure that contain the statistics about the media
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.EventManager">
|
|
<summary>
|
|
<para>Get event manager from media descriptor object.</para>
|
|
<para>NOTE: this function doesn't increment reference counting.</para>
|
|
</summary>
|
|
<returns>event manager object</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.Duration">
|
|
<summary>Get duration (in ms) of media descriptor object item.</summary>
|
|
<returns>duration of media item or -1 on error</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.Parse(LibVLCSharp.Shared.MediaParseOptions,System.Int32,System.Threading.CancellationToken)">
|
|
<summary>
|
|
Parse the media asynchronously with options.
|
|
It uses a flag to specify parse options (see <see cref="T:LibVLCSharp.Shared.MediaParseOptions"/>). All these flags can be combined. By default, the media is parsed only if it's a local file.
|
|
<para/> Note: Parsing can be aborted with ParseStop().
|
|
</summary>
|
|
<param name="options">Parse options flags. They can be combined</param>
|
|
<param name="timeout">maximum time allowed to preparse the media.
|
|
<para/>If -1, the default "preparse-timeout" option will be used as a timeout.
|
|
<para/>If 0, it will wait indefinitely. If > 0, the timeout will be used (in milliseconds).
|
|
</param>
|
|
<param name="cancellationToken">token to cancel the operation</param>
|
|
<returns>the parse status of the media</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.IsParsed">
|
|
<summary>Return true is the media descriptor object is parsed</summary>
|
|
<returns>true if media object has been parsed otherwise it returns false</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.ParsedStatus">
|
|
<summary>Get Parsed status for media descriptor object.</summary>
|
|
<returns>a value of the libvlc_media_parsed_status_t enum</returns>
|
|
<remarks>
|
|
<para>libvlc_MediaParsedChanged</para>
|
|
<para>libvlc_media_parsed_status_t</para>
|
|
<para>LibVLC 3.0.0 or later</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.ParseStop">
|
|
<summary>Stop the parsing of the media</summary>
|
|
<remarks>
|
|
<para>When the media parsing is stopped, the libvlc_MediaParsedChanged event will</para>
|
|
<para>be sent with the libvlc_media_parsed_status_timeout status.</para>
|
|
<para>libvlc_media_parse_with_options</para>
|
|
<para>LibVLC 3.0.0 or later</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.Tracks">
|
|
<summary>Get media descriptor's elementary streams description
|
|
<para>address to store an allocated array of Elementary Streams</para>
|
|
<para>descriptions (must be freed with libvlc_media_tracks_release</para>
|
|
<para>by the caller) [OUT]</para>
|
|
<returns>the number of Elementary Streams (zero on error)</returns>
|
|
<remarks>
|
|
<para>Note, you need to call libvlc_media_parse() or play the media at least once</para>
|
|
<para>before calling this function.</para>
|
|
<para>Not doing this will result in an empty array.</para>
|
|
<para>LibVLC 2.1.0 and later.</para>
|
|
</remarks>
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.SubItems">
|
|
<summary>
|
|
<para>Get subitems of media descriptor object. This will increment</para>
|
|
<para>the reference count of supplied media descriptor object. Use</para>
|
|
<para>libvlc_media_list_release() to decrement the reference counting.</para>
|
|
</summary>
|
|
<returns>list of media descriptor subitems or NULL</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.Type">
|
|
<summary>
|
|
The type of the media
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.AddSlave(LibVLCSharp.Shared.MediaSlaveType,System.UInt32,System.String)">
|
|
<summary>Add a slave to the current media.</summary>
|
|
<param name="type">subtitle or audio</param>
|
|
<param name="priority">from 0 (low priority) to 4 (high priority)</param>
|
|
<param name="uri">Uri of the slave (should contain a valid scheme).</param>
|
|
<returns>true on success, false on error.</returns>
|
|
<remarks>
|
|
<para>A slave is an external input source that may contains an additional subtitle</para>
|
|
<para>track (like a .srt) or an additional audio track (like a .ac3).</para>
|
|
<para>This function must be called before the media is parsed (via</para>
|
|
<para>libvlc_media_parse_with_options()) or before the media is played (via</para>
|
|
<para>libvlc_media_player_play())</para>
|
|
<para>LibVLC 3.0.0 and later.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.AddSlave(LibVLCSharp.Shared.MediaSlaveType,System.UInt32,System.Uri)">
|
|
<summary>Add a slave to the current media.</summary>
|
|
<param name="type">subtitle or audio</param>
|
|
<param name="priority">from 0 (low priority) to 4 (high priority)</param>
|
|
<param name="uri">Uri of the slave (should contain a valid scheme).</param>
|
|
<returns>true on success, false on error.</returns>
|
|
<remarks>
|
|
<para>A slave is an external input source that may contains an additional subtitle</para>
|
|
<para>track (like a .srt) or an additional audio track (like a .ac3).</para>
|
|
<para>This function must be called before the media is parsed (via</para>
|
|
<para>libvlc_media_parse_with_options()) or before the media is played (via</para>
|
|
<para>libvlc_media_player_play())</para>
|
|
<para>LibVLC 3.0.0 and later.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.ClearSlaves">
|
|
<summary>
|
|
<para>Clear all slaves previously added by libvlc_media_slaves_add() or</para>
|
|
<para>internally.</para>
|
|
</summary>
|
|
<remarks>LibVLC 3.0.0 and later.</remarks>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Media.Slaves">
|
|
<summary>Get a media descriptor's slave list</summary>
|
|
<para>address to store an allocated array of slaves (must be</para>
|
|
<para>freed with libvlc_media_slaves_release()) [OUT]</para>
|
|
<returns>the number of slaves (zero on error)</returns>
|
|
<remarks>
|
|
<para>The list will contain slaves parsed by VLC or previously added by</para>
|
|
<para>libvlc_media_slaves_add(). The typical use case of this function is to save</para>
|
|
<para>a list of slave in a database for a later use.</para>
|
|
<para>LibVLC 3.0.0 and later.</para>
|
|
<para>libvlc_media_slaves_add</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.CodecDescription(LibVLCSharp.Shared.TrackType,System.UInt32)">
|
|
<summary>Get a media's codec description</summary>
|
|
<param name="type">The type of the track</param>
|
|
<param name="codec">the codec or fourcc</param>
|
|
<returns>the codec description</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.Equals(System.Object)">
|
|
<summary>
|
|
Equality override for this media instance
|
|
</summary>
|
|
<param name="obj">the media to compare this one with</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.GetHashCode">
|
|
<summary>
|
|
Custom hascode implemenation for this Media instance
|
|
</summary>
|
|
<returns>the hashcode for this Media instance</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Media.Retain">
|
|
<summary>Increments the native reference counter for the media</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Media.InternalOpenMedia">
|
|
<summary>
|
|
<para>It consists of a media location and various optional meta data.</para>
|
|
<para>@{</para>
|
|
<para></para>
|
|
<para>LibVLC media item/descriptor external API</para>
|
|
</summary>
|
|
<summary>Callback prototype to open a custom bitstream input media.</summary>
|
|
<param name="opaque">private pointer as passed to libvlc_media_new_callbacks()</param>
|
|
<param name="data">storage space for a private data pointer [OUT]</param>
|
|
<param name="size">byte length of the bitstream or UINT64_MAX if unknown [OUT]</param>
|
|
<returns>
|
|
<para>0 on success, non-zero on error. In case of failure, the other</para>
|
|
<para>callbacks will not be invoked and any value stored in *datap and *sizep is</para>
|
|
<para>discarded.</para>
|
|
</returns>
|
|
<remarks>
|
|
<para>The same media item can be opened multiple times. Each time, this callback</para>
|
|
<para>is invoked. It should allocate and initialize any instance-specific</para>
|
|
<para>resources, then store them in *datap. The instance resources can be freed</para>
|
|
<para>in the</para>
|
|
<para>For convenience, *datap is initially NULL and *sizep is initially 0.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Media.InternalReadMedia">
|
|
<summary>Callback prototype to read data from a custom bitstream input media.</summary>
|
|
<param name="opaque">private pointer as set by the</param>
|
|
<param name="buf">start address of the buffer to read data into</param>
|
|
<param name="len">bytes length of the buffer</param>
|
|
<returns>
|
|
<para>strictly positive number of bytes read, 0 on end-of-stream,</para>
|
|
<para>or -1 on non-recoverable error</para>
|
|
</returns>
|
|
<remarks>
|
|
<para>callback</para>
|
|
<para>If no data is immediately available, then the callback should sleep.</para>
|
|
<para>The application is responsible for avoiding deadlock situations.</para>
|
|
<para>In particular, the callback should return an error if playback is stopped;</para>
|
|
<para>if it does not return, then libvlc_media_player_stop() will never return.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Media.InternalSeekMedia">
|
|
<summary>Callback prototype to seek a custom bitstream input media.</summary>
|
|
<param name="opaque">private pointer as set by the</param>
|
|
<param name="offset">absolute byte offset to seek to</param>
|
|
<returns>0 on success, -1 on error.</returns>
|
|
<remarks>callback</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Media.InternalCloseMedia">
|
|
<summary>Callback prototype to close a custom bitstream input media.</summary>
|
|
<param name="opaque">private pointer as set by the</param>
|
|
<remarks>callback</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.Media.MetaChanged">
|
|
<summary>
|
|
The meta information changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.Media.ParsedChanged">
|
|
<summary>
|
|
The parsing status changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.Media.SubItemAdded">
|
|
<summary>
|
|
A sub item was added to this media's MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.Media.DurationChanged">
|
|
<summary>
|
|
The duration of the media changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.Media.MediaFreed">
|
|
<summary>
|
|
The media was freed on the native side
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.Media.StateChanged">
|
|
<summary>
|
|
The media state changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.Media.SubItemTreeAdded">
|
|
<summary>
|
|
A sub item tree was added to this media
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VLCState">
|
|
<summary>Note the order of libvlc_state_t enum must match exactly the order of</summary>
|
|
<remarks>
|
|
<para>mediacontrol_PlayerStatus,</para>
|
|
<para>input_state_e enums,</para>
|
|
<para>and VideoLAN.LibVLCSharp.State (at bindings/cil/src/media.cs).</para>
|
|
<para>Expected states by web plugins are:</para>
|
|
<para>IDLE/CLOSE=0, OPENING=1, PLAYING=3, PAUSED=4,</para>
|
|
<para>STOPPING=5, ENDED=6, ERROR=7</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VLCState.NothingSpecial">
|
|
<summary>
|
|
Nothing special happening
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VLCState.Opening">
|
|
<summary>
|
|
Opening media
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VLCState.Buffering">
|
|
<summary>
|
|
Buffering media
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VLCState.Playing">
|
|
<summary>
|
|
Playing media
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VLCState.Paused">
|
|
<summary>
|
|
Paused media
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VLCState.Stopped">
|
|
<summary>
|
|
Stopped media
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VLCState.Ended">
|
|
<summary>
|
|
Ended media
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VLCState.Error">
|
|
<summary>
|
|
Error media
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.TrackType">
|
|
<summary>
|
|
Media track type such as Audio, Video or Text
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TrackType.Unknown">
|
|
<summary>
|
|
Unknown track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TrackType.Audio">
|
|
<summary>
|
|
Audio track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TrackType.Video">
|
|
<summary>
|
|
Video track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TrackType.Text">
|
|
<summary>
|
|
Text track
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VideoOrientation">
|
|
<summary>
|
|
Video orientation
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoOrientation.TopLeft">
|
|
<summary>Normal. Top line represents top, left column left.</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoOrientation.TopRight">
|
|
<summary>Flipped horizontally</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoOrientation.BottomLeft">
|
|
<summary>Flipped vertically</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoOrientation.BottomRight">
|
|
<summary>Rotated 180 degrees</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoOrientation.LeftTop">
|
|
<summary>Transposed</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoOrientation.LeftBottom">
|
|
<summary>Rotated 90 degrees clockwise (or 270 anti-clockwise)</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoOrientation.RightTop">
|
|
<summary>Rotated 90 degrees anti-clockwise</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoOrientation.RightBottom">
|
|
<summary>Anti-transposed</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VideoProjection">
|
|
<summary>
|
|
Video projection
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoProjection.Rectangular">
|
|
<summary>
|
|
Rectangular
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoProjection.Equirectangular">
|
|
<summary>360 spherical</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoProjection.CubemapLayoutStandard">
|
|
<summary>
|
|
Cubemap layout standard
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaSlaveType">
|
|
<summary>Type of a media slave: subtitle or audio.</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaSlaveType.Subtitle">
|
|
<summary>
|
|
Subtitle
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaSlaveType.Audio">
|
|
<summary>
|
|
Audio
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MetadataType">
|
|
<summary>
|
|
Meta data types
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Title">
|
|
<summary>
|
|
Title metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Artist">
|
|
<summary>
|
|
Artist metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Genre">
|
|
<summary>
|
|
Genre metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Copyright">
|
|
<summary>
|
|
Copyright metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Album">
|
|
<summary>
|
|
Album metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.TrackNumber">
|
|
<summary>
|
|
Track number metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Description">
|
|
<summary>
|
|
Description metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Rating">
|
|
<summary>
|
|
Rating metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Date">
|
|
<summary>
|
|
Date metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Setting">
|
|
<summary>
|
|
Setting metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.URL">
|
|
<summary>
|
|
URL metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Language">
|
|
<summary>
|
|
Language metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.NowPlaying">
|
|
<summary>
|
|
Now playing metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Publisher">
|
|
<summary>
|
|
Publisher metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.EncodedBy">
|
|
<summary>
|
|
Encoded by metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.ArtworkURL">
|
|
<summary>
|
|
Artwork URL metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.TrackID">
|
|
<summary>
|
|
Track ID metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.TrackTotal">
|
|
<summary>
|
|
Total track metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Director">
|
|
<summary>
|
|
Director metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Season">
|
|
<summary>
|
|
Season metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Episode">
|
|
<summary>
|
|
Episode metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.ShowName">
|
|
<summary>
|
|
Show name metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.Actors">
|
|
<summary>
|
|
Actors metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.AlbumArtist">
|
|
<summary>
|
|
Album artist metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.DiscNumber">
|
|
<summary>
|
|
Disc number metadata
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MetadataType.DiscTotal">
|
|
<summary>
|
|
Disc total metadata
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.FromType">
|
|
<summary>
|
|
The FromType enum is used to drive the media creation.
|
|
A media is usually created using a string, which can represent one of 3 things: FromPath, FromLocation, AsNode.
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.FromType.FromPath">
|
|
<summary>
|
|
Create a media for a certain file path.
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.FromType.FromLocation">
|
|
<summary>
|
|
Create a media with a certain given media resource location,
|
|
for instance a valid URL.
|
|
note To refer to a local file with this function,
|
|
the file://... URI syntax <b>must</b> be used (see IETF RFC3986).
|
|
We recommend using FromPath instead when dealing with
|
|
local files.
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.FromType.AsNode">
|
|
<summary>
|
|
Create a media as an empty node with a given name.
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaParseOptions">
|
|
<summary>
|
|
Parse flags used by libvlc_media_parse_with_options()
|
|
</summary>
|
|
<remarks>libvlc_media_parse_with_options</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParseOptions.ParseLocal">
|
|
<summary>Parse media if it's a local file</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParseOptions.ParseNetwork">
|
|
<summary>Parse media even if it's a network file</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParseOptions.FetchLocal">
|
|
<summary>Fetch meta and covert art using local resources</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParseOptions.FetchNetwork">
|
|
<summary>Fetch meta and covert art using network resources</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParseOptions.DoInteract">
|
|
<summary>
|
|
Interact with the user (via libvlc_dialog_cbs) when preparsing this item
|
|
(and not its sub items). Set this flag in order to receive a callback
|
|
when the input is asking for credentials.
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaParsedStatus">
|
|
<summary>
|
|
Parse status used sent by libvlc_media_parse_with_options() or returned by
|
|
libvlc_media_get_parsed_status()
|
|
</summary>
|
|
<remarks>
|
|
libvlc_media_parse_with_options
|
|
libvlc_media_get_parsed_status
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParsedStatus.Skipped">
|
|
<summary>
|
|
Parsing was skipped
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParsedStatus.Failed">
|
|
<summary>
|
|
Parsing failed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParsedStatus.Timeout">
|
|
<summary>
|
|
Parsing timed out
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaParsedStatus.Done">
|
|
<summary>
|
|
Parsing completed successfully
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaType">
|
|
<summary>Media type</summary>
|
|
<remarks>libvlc_media_get_type</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaType.Unknown">
|
|
<summary>
|
|
Unknown media type
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaType.File">
|
|
<summary>
|
|
File type
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaType.Directory">
|
|
<summary>
|
|
Directory type
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaType.Disc">
|
|
<summary>
|
|
Disc type
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaType.Stream">
|
|
<summary>
|
|
Stream type
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaType.Playlist">
|
|
<summary>
|
|
Playlist type
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaConfiguration">
|
|
<summary>
|
|
Configuration helper designed to be used for advanced libvlc configuration
|
|
<para/> More info at https://wiki.videolan.org/VLC_command-line_help/
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaConfiguration.EnableHardwareDecoding">
|
|
<summary>
|
|
Enable/disable hardware decoding (crossplatform).
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaConfiguration.FileCaching">
|
|
<summary>
|
|
Caching value for local files, in milliseconds [0 .. 60000ms]
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaConfiguration.NetworkCaching">
|
|
<summary>
|
|
Caching value for network resources, in milliseconds [0 .. 60000ms]
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaConfiguration.Build">
|
|
<summary>
|
|
Builds the current MediaConfiguration for consumption by libvlc (or storage)
|
|
</summary>
|
|
<returns>Configured libvlc options as strings</returns>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaDiscoverer">
|
|
<summary>
|
|
MediaDiscoverer should be used to find media on NAS and any SMB/UPnP-enabled device on your local network.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaDiscoverer.#ctor(LibVLCSharp.Shared.LibVLC,System.String)">
|
|
<summary>
|
|
Media discoverer constructor
|
|
</summary>
|
|
<param name="libVLC">libvlc instance this will be attached to</param>
|
|
<param name="name">name from one of LibVLC.MediaDiscoverers</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaDiscoverer.Start">
|
|
<summary>
|
|
Start media discovery.
|
|
To stop it, call MediaDiscover::stop() or destroy the object directly.
|
|
</summary>
|
|
<returns>false in case of error, true otherwise</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaDiscoverer.Stop">
|
|
<summary>
|
|
Stop media discovery.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaDiscoverer.LocalizedName">
|
|
<summary>
|
|
Get media service discover object its localized name.
|
|
under v3 only
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaDiscoverer.EventManager">
|
|
<summary>
|
|
Get event manager from media service discover object.
|
|
under v3 only
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaDiscoverer.IsRunning">
|
|
<summary>
|
|
Query if media service discover object is running.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaDiscoverer.MediaList">
|
|
<summary>
|
|
The MediaList attached to this MediaDiscoverer
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaDiscoverer.Started">
|
|
<summary>
|
|
Media discovery has been started for this media discoverer
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaDiscoverer.Stopped">
|
|
<summary>
|
|
Media discovery has been stopped for this media discoverer
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaDiscoverer.Dispose(System.Boolean)">
|
|
<summary>
|
|
Dispose of this media discoverer
|
|
</summary>
|
|
<param name="disposing">true if called from a method</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaDiscovererCategory">
|
|
<summary>Category of a media discoverer</summary>
|
|
<remarks>libvlc_media_discoverer_list_get()</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaDiscovererCategory.Devices">
|
|
<summary>devices, like portable music player</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaDiscovererCategory.Lan">
|
|
<summary>LAN/WAN services, like Upnp, SMB, or SAP</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaDiscovererCategory.Podcasts">
|
|
<summary>Podcasts</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaDiscovererCategory.Localdirs">
|
|
<summary>Local directories, like Video, Music or Pictures directories</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaInput">
|
|
<summary>
|
|
An abstract class that lets libvlc read a media from callbacks.
|
|
|
|
Override this to provide your own reading mechanism, or you can use the <see cref="T:LibVLCSharp.Shared.StreamMediaInput"/> class
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaInput.GcHandle">
|
|
<summary>
|
|
The GCHandle to be passed to callbacks as userData
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaInput.#ctor">
|
|
<summary>
|
|
The constructor
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaInput.CanSeek">
|
|
<summary>
|
|
A value indicating whether this Media input can be seeked in.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaInput.Open(System.UInt64@)">
|
|
<summary>
|
|
LibVLC calls this method when it wants to open the media
|
|
</summary>
|
|
<param name="size">This value must be filled with the length of the media (or ulong.MaxValue if unknown)</param>
|
|
<returns><c>true</c> if the stream opened successfully</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaInput.Read(System.IntPtr,System.UInt32)">
|
|
<summary>
|
|
LibVLC calls this method when it wants to read the media
|
|
</summary>
|
|
<param name="buf">The buffer where read data must be written</param>
|
|
<param name="len">The buffer length</param>
|
|
<returns>strictly positive number of bytes read, 0 on end-of-stream, or -1 on non-recoverable error</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaInput.Seek(System.UInt64)">
|
|
<summary>
|
|
LibVLC calls this method when it wants to seek to a specific position in the media
|
|
</summary>
|
|
<param name="offset">The offset, in bytes, since the beginning of the stream</param>
|
|
<returns><c>true</c> if the seek succeeded, false otherwise</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaInput.Close">
|
|
<summary>
|
|
LibVLC calls this method when it wants to close the media.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaInput.Dispose(System.Boolean)">
|
|
<summary>
|
|
Override this to dispose things in your child class
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaInput.Dispose">
|
|
<summary>
|
|
Disposes of this instance
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaList">
|
|
<summary>
|
|
The MediaList holds a list of Media types
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.#ctor(LibVLCSharp.Shared.Media)">
|
|
<summary>
|
|
Get subitems of media descriptor object.
|
|
</summary>
|
|
<param name="media"></param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.#ctor(LibVLCSharp.Shared.MediaDiscoverer)">
|
|
<summary>
|
|
Get media service discover media list.
|
|
</summary>
|
|
<param name="mediaDiscoverer"></param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.#ctor(LibVLCSharp.Shared.LibVLC)">
|
|
<summary>
|
|
Create an empty media list.
|
|
</summary>
|
|
<param name="libVLC"></param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.SetMedia(LibVLCSharp.Shared.Media)">
|
|
<summary>
|
|
Associate media instance with this media list instance. If another
|
|
media instance was present it will be released.
|
|
</summary>
|
|
<param name="media">media instance to add</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.AddMedia(LibVLCSharp.Shared.Media)">
|
|
<summary>
|
|
Add media instance to media list
|
|
</summary>
|
|
<param name="media">a media instance</param>
|
|
<returns>true on success, false if the media list is read-only</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.InsertMedia(LibVLCSharp.Shared.Media,System.Int32)">
|
|
<summary>
|
|
Insert media instance in media list on a position.
|
|
</summary>
|
|
<param name="media">a media instance</param>
|
|
<param name="position">position in the array where to insert</param>
|
|
<returns>true on success, false if the media list is read-only</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.RemoveIndex(System.Int32)">
|
|
<summary>
|
|
Remove media instance from media list on a position.
|
|
</summary>
|
|
<param name="positionIndex">position in the array where to remove the iteam</param>
|
|
<returns>true on success, false if the media list is read-only or the item was not found</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaList.Count">
|
|
<summary>
|
|
Get count on media list items.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaList.Item(System.Int32)">
|
|
<summary>
|
|
Gets the element at the specified index
|
|
</summary>
|
|
<param name="position">position in array where to insert</param>
|
|
<returns>media instance at position, or null if not found.
|
|
In case of success, Media.Retain() is called to increase the refcount on the media. </returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.IndexOf(LibVLCSharp.Shared.Media)">
|
|
<summary>
|
|
Find index position of List media instance in media list. Warning: the
|
|
function will return the first matched position.
|
|
</summary>
|
|
<param name="media">media instance</param>
|
|
<returns>position of media instance or -1 if media not found</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaList.IsReadonly">
|
|
<summary>
|
|
This indicates if this media list is read-only from a user point of view.
|
|
True if readonly, false otherwise
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.Lock">
|
|
<summary>
|
|
Get lock on media list items
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.Unlock">
|
|
<summary>
|
|
Release lock on media list items The MediaList lock should be held upon entering this function.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaList.EventManager">
|
|
<summary>
|
|
Get libvlc_event_manager from this media list instance. The
|
|
p_event_manager is immutable, so you don't have to hold the lock
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.Retain">
|
|
<summary>Increments the native reference counter for this medialist instance</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaList.ItemAdded">
|
|
<summary>
|
|
An item has been added to the MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaList.WillAddItem">
|
|
<summary>
|
|
An item is about to be added to the MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaList.ItemDeleted">
|
|
<summary>
|
|
An item has been deleted from the MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaList.WillDeleteItem">
|
|
<summary>
|
|
An item is about to be deleted from the MediaList
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaList.EndReached">
|
|
<summary>
|
|
The media list reached its end
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaList.GetEnumerator">
|
|
<summary>
|
|
Returns an enumerator that iterates through a collection of media
|
|
</summary>
|
|
<returns>an enumerator over a media collection</returns>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer">
|
|
<summary>
|
|
The MediaPlayer type is used to control playback, set renderers, provide events and much more
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayer._gcHandle">
|
|
<summary>
|
|
The GCHandle to be passed to callbacks as userData
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.#ctor(LibVLCSharp.Shared.LibVLC)">
|
|
<summary>Create an empty Media Player object</summary>
|
|
<param name="libVLC">
|
|
<para>the libvlc instance in which the Media Player</para>
|
|
<para>should be created.</para>
|
|
</param>
|
|
<returns>a new media player object, or NULL on error.</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.#ctor(LibVLCSharp.Shared.Media)">
|
|
<summary>Create a Media Player object from a Media</summary>
|
|
<param name="media">
|
|
<para>the media. Afterwards the p_md can be safely</para>
|
|
<para>destroyed.</para>
|
|
</param>
|
|
<returns>a new media player object, or NULL on error.</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Media">
|
|
<summary>
|
|
Get the media used by the media_player.
|
|
Set the media that will be used by the media_player.
|
|
If any, previous md will be released.
|
|
Note: It is safe to release the Media on the C# side after it's been set on the MediaPlayer successfully
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.IsPlaying">
|
|
<summary>
|
|
return true if the media player is playing, false otherwise
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Play">
|
|
<summary>
|
|
Start playback with Media that is set
|
|
If playback was already started, this method has no effect
|
|
</summary>
|
|
<returns>true if successful</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Play(LibVLCSharp.Shared.Media)">
|
|
<summary>
|
|
Set media and start playback
|
|
</summary>
|
|
<param name="media"></param>
|
|
<returns>true if successful</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetPause(System.Boolean)">
|
|
<summary>
|
|
Pause or resume (no effect if there is no media).
|
|
version LibVLC 1.1.1 or later
|
|
</summary>
|
|
<param name="pause">play/resume if true, pause if false</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Pause">
|
|
<summary>
|
|
Toggle pause (no effect if there is no media)
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Stop">
|
|
<summary>
|
|
Stop the playback (no effect if there is no media)
|
|
warning:
|
|
This is synchronous, and will block until all VLC threads have been joined.
|
|
Calling this from a VLC callback is a bound to cause a deadlock.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.NsObject">
|
|
<summary>
|
|
Get the NSView handler previously set
|
|
return the NSView handler or 0 if none where set
|
|
<para></para>
|
|
<para></para>
|
|
Set the NSView handler where the media player should render its video output.
|
|
Use the vout called "macosx".
|
|
<para></para>
|
|
The drawable is an NSObject that follow the
|
|
VLCOpenGLVideoViewEmbedding protocol: VLCOpenGLVideoViewEmbedding NSObject
|
|
Or it can be an NSView object.
|
|
If you want to use it along with Qt4 see the QMacCocoaViewContainer.
|
|
Then the following code should work: { NSView *video = [[NSView
|
|
alloc] init]; QMacCocoaViewContainer *container = new
|
|
QMacCocoaViewContainer(video, parent);
|
|
libvlc_media_player_set_nsobject(mp, video); [video release]; }
|
|
You can find a live example in VLCVideoView in VLCKit.framework.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Length">
|
|
<summary>
|
|
The movie length (in ms), or -1 if there is no media.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Time">
|
|
<summary>
|
|
Set the movie time (in ms). This has no effect if no media is being
|
|
played. Not all formats and protocols support this.
|
|
<para></para>
|
|
Get the movie time (in ms), or -1 if there is no media.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Position">
|
|
<summary>
|
|
Set movie position as percentage between 0.0 and 1.0. This has no
|
|
effect if playback is not enabled. This might not work depending on
|
|
the underlying input format and protocol.
|
|
<para></para>
|
|
Get movie position as percentage between 0.0 and 1.0.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SeekTo(System.TimeSpan)">
|
|
<summary>
|
|
Set the movie time. This has no effect if no media is being
|
|
played. Not all formats and protocols support this.
|
|
</summary>
|
|
<param name="time">the movie time to seek to</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Chapter">
|
|
<summary>
|
|
Set movie chapter (if applicable).
|
|
<para></para>
|
|
Get the movie chapter number currently playing, or -1 if there is no media.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.ChapterCount">
|
|
<summary>
|
|
Get the number of chapters in movie, or -1.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.WillPlay">
|
|
<summary>
|
|
True if the player is able to play
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.ChapterCountForTitle(System.Int32)">
|
|
<summary>
|
|
Get the number of chapters in title, or -1
|
|
</summary>
|
|
<param name="title"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Title">
|
|
<summary>
|
|
Set movie title number to play
|
|
<para></para>
|
|
Get movie title number currently playing, or -1
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.TitleCount">
|
|
<summary>
|
|
The title number count, or -1
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.PreviousChapter">
|
|
<summary>
|
|
Set previous chapter (if applicable)
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.NextChapter">
|
|
<summary>
|
|
Set next chapter (if applicable)
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Rate">
|
|
<summary>
|
|
Get the requested movie play rate.
|
|
warning
|
|
<para></para>
|
|
Depending on the underlying media, the requested rate may be
|
|
different from the real playback rate.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetRate(System.Single)">
|
|
<summary>
|
|
Set movie play rate
|
|
</summary>
|
|
<param name="rate">movie play rate to set</param>
|
|
<returns>
|
|
return -1 if an error was detected, 0 otherwise (but even then, it
|
|
might not actually work depending on the underlying media protocol)
|
|
</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.State">
|
|
<summary>
|
|
Get the current state of the media player (playing, paused, ...)
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Fps">
|
|
<summary>
|
|
Get the frames per second (fps) for this playing movie, or 0 if unspecified
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.VoutCount">
|
|
<summary>
|
|
Get the number of video outputs
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.IsSeekable">
|
|
<summary>
|
|
True if the media player can seek
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.CanPause">
|
|
<summary>
|
|
True if the media player can pause
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.ProgramScambled">
|
|
<summary>
|
|
True if the current program is scrambled
|
|
<para></para>
|
|
LibVLC 2.2.0 or later
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.NextFrame">
|
|
<summary>
|
|
Display the next frame (if supported)
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Navigate(System.UInt32)">
|
|
<summary>
|
|
Navigate through DVD Menu
|
|
</summary>
|
|
<param name="navigate">the Navigation mode</param>
|
|
LibVLC 2.0.0 or later
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetVideoTitleDisplay(LibVLCSharp.Shared.Position,System.UInt32)">
|
|
<summary>
|
|
Set if, and how, the video title will be shown when media is played.
|
|
</summary>
|
|
<param name="position">position at which to display the title, or libvlc_position_disable to prevent the title from being displayed</param>
|
|
<param name="timeout">title display timeout in milliseconds (ignored if libvlc_position_disable)</param>
|
|
LibVLC 2.1.0 or later
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.ToggleFullscreen">
|
|
<summary>
|
|
Toggle fullscreen status on non-embedded video outputs.
|
|
<para></para>
|
|
warning: The same limitations applies to this function as to MediaPlayer::setFullscreen()
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Fullscreen">
|
|
<summary>
|
|
Enable or disable fullscreen.
|
|
Warning, TL;DR version : Unless you know what you're doing, don't use this.
|
|
Put your VideoView inside a fullscreen control instead, refer to your platform documentation.
|
|
<para></para>
|
|
Warning, long version :
|
|
With most window managers, only a top-level windows can be in full-screen mode.
|
|
Hence, this function will not operate properly if libvlc_media_player_set_xwindow() was used to embed the video in a non-top-level window.
|
|
In that case, the embedding window must be reparented to the root window before fullscreen mode is enabled.
|
|
You will want to reparent it back to its normal parent when disabling fullscreen.
|
|
<para></para>
|
|
return the fullscreen status (boolean)
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.ToggleTeletext">
|
|
<summary>
|
|
Toggle teletext transparent status on video output.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetEqualizer(LibVLCSharp.Shared.Equalizer)">
|
|
<summary>
|
|
Apply new equalizer settings to a media player.
|
|
The equalizer is first created by invoking libvlc_audio_equalizer_new() or libvlc_audio_equalizer_new_from_preset().
|
|
It is possible to apply new equalizer settings to a media player whether the media player is currently playing media or not.
|
|
Invoking this method will immediately apply the new equalizer settings to the audio output of the currently playing media if there is any.
|
|
If there is no currently playing media, the new equalizer settings will be applied later if and when new media is played.
|
|
Equalizer settings will automatically be applied to subsequently played media.
|
|
To disable the equalizer for a media player invoke this method passing NULL for the p_equalizer parameter.
|
|
The media player does not keep a reference to the supplied equalizer so it is safe for an application to release the equalizer reference
|
|
any time after this method returns.
|
|
</summary>
|
|
<param name="equalizer">opaque equalizer handle, or NULL to disable the equalizer for this media player</param>
|
|
LibVLC 2.2.0 or later
|
|
<returns>true on success, false otherwise.</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.UnsetEqualizer">
|
|
<summary>
|
|
unsetEqualizer disable equalizer for this media player
|
|
</summary>
|
|
<returns>true on success, false otherwise.</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetAudioCallbacks(LibVLCSharp.Shared.MediaPlayer.LibVLCAudioPlayCb,LibVLCSharp.Shared.MediaPlayer.LibVLCAudioPauseCb,LibVLCSharp.Shared.MediaPlayer.LibVLCAudioResumeCb,LibVLCSharp.Shared.MediaPlayer.LibVLCAudioFlushCb,LibVLCSharp.Shared.MediaPlayer.LibVLCAudioDrainCb)">
|
|
<summary>
|
|
Sets callbacks and private data for decoded audio.
|
|
Use libvlc_audio_set_format() or libvlc_audio_set_format_callbacks() to configure the decoded audio format.
|
|
Note: The audio callbacks override any other audio output mechanism. If the callbacks are set, LibVLC will not output audio in any way.
|
|
</summary>
|
|
<param name="playCb">callback to play audio samples (must not be NULL) </param>
|
|
<param name="pauseCb">callback to pause playback (or NULL to ignore) </param>
|
|
<param name="resumeCb">callback to resume playback (or NULL to ignore) </param>
|
|
<param name="flushCb">callback to flush audio buffers (or NULL to ignore) </param>
|
|
<param name="drainCb">callback to drain audio buffers (or NULL to ignore) </param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetVolumeCallback(LibVLCSharp.Shared.MediaPlayer.LibVLCVolumeCb)">
|
|
<summary>
|
|
Set callbacks and private data for decoded audio.
|
|
This only works in combination with libvlc_audio_set_callbacks().
|
|
Use libvlc_audio_set_format() or libvlc_audio_set_format_callbacks() to configure the decoded audio format.
|
|
</summary>
|
|
<param name="volumeCb">callback to apply audio volume, or NULL to apply volume in software</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetAudioFormatCallback(LibVLCSharp.Shared.MediaPlayer.LibVLCAudioSetupCb,LibVLCSharp.Shared.MediaPlayer.LibVLCAudioCleanupCb)">
|
|
<summary>
|
|
Sets decoded audio format via callbacks.
|
|
This only works in combination with libvlc_audio_set_callbacks().
|
|
</summary>
|
|
<param name="setupCb">callback to select the audio format (cannot be NULL)</param>
|
|
<param name="cleanupCb">callback to release any allocated resources (or NULL)</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetAudioFormat(System.String,System.UInt32,System.UInt32)">
|
|
<summary>
|
|
Sets a fixed decoded audio format.
|
|
This only works in combination with libvlc_audio_set_callbacks(), and is mutually exclusive with libvlc_audio_set_format_callbacks().
|
|
</summary>
|
|
<param name="format">a four-characters string identifying the sample format (e.g. "S16N" or "FL32")</param>
|
|
<param name="rate">sample rate (expressed in Hz)</param>
|
|
<param name="channels">channels count</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetAudioOutput(System.String)">
|
|
<summary>
|
|
Selects an audio output module.
|
|
Note:
|
|
Any change will take effect only after playback is stopped and restarted. Audio output cannot be changed while playing.
|
|
</summary>
|
|
<param name="name">name of audio output, use psz_name of</param>
|
|
<returns>true if function succeeded, false on error</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.OutputDevice">
|
|
<summary>
|
|
Get the current audio output device identifier.
|
|
This complements <see cref="M:LibVLCSharp.Shared.MediaPlayer.SetOutputDevice(System.String,System.String)"/>
|
|
warning The initial value for the current audio output device identifier
|
|
may not be set or may be some unknown value.A LibVLC application should
|
|
compare this value against the known device identifiers (e.g.those that
|
|
were previously retrieved by a call to <see cref="P:LibVLCSharp.Shared.MediaPlayer.AudioOutputDeviceEnum"/> or
|
|
<see cref="M:LibVLCSharp.Shared.LibVLC.AudioOutputDevices(System.String)"/>) to find the current audio output device.
|
|
|
|
It is possible that the selected audio output device changes(an external
|
|
change) without a call to <see cref="M:LibVLCSharp.Shared.MediaPlayer.SetOutputDevice(System.String,System.String)"/>.That may make this
|
|
method unsuitable to use if a LibVLC application is attempting to track
|
|
dynamic audio device changes as they happen.
|
|
|
|
</summary>
|
|
<returns>the current audio output device identifier, or NULL if no device is selected or in case of error.</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetOutputDevice(System.String,System.String)">
|
|
<summary>
|
|
Configures an explicit audio output device.
|
|
If the module paramater is NULL, audio output will be moved to the device
|
|
specified by the device identifier string immediately.This is the
|
|
recommended usage.
|
|
A list of adequate potential device strings can be obtained with
|
|
<see cref="P:LibVLCSharp.Shared.MediaPlayer.AudioOutputDeviceEnum"/>
|
|
However passing NULL is supported in LibVLC version 2.2.0 and later only;
|
|
in earlier versions, this function would have no effects when the module
|
|
parameter was NULL.
|
|
If the module parameter is not NULL, the device parameter of the
|
|
corresponding audio output, if it exists, will be set to the specified
|
|
string.
|
|
A list of adequate potential device strings can be obtained with
|
|
<see cref="M:LibVLCSharp.Shared.LibVLC.AudioOutputDevices(System.String)"/>
|
|
</summary>
|
|
<param name="deviceId">device identifier string</param>
|
|
<param name="module">If NULL, current audio output module. if non-NULL, name of audio output module</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.AudioOutputDeviceEnum">
|
|
<summary>
|
|
Gets a list of potential audio output devices
|
|
<para/> Not all audio outputs support enumerating devices. The audio output may be functional even if the list is empty (NULL).
|
|
The list may not be exhaustive. Some audio output devices in the list might not actually work in some circumstances.
|
|
<para/> By default, it is recommended to not specify any explicit audio device.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.ToggleMute">
|
|
<summary>
|
|
Toggle mute status.
|
|
Warning
|
|
Toggling mute atomically is not always possible: On some platforms, other processes can mute the VLC audio playback
|
|
stream asynchronously.
|
|
Thus, there is a small race condition where toggling will not work.
|
|
See also the limitations of libvlc_audio_set_mute().
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Mute">
|
|
<summary>
|
|
Get current mute status.
|
|
Set mute status.
|
|
Warning
|
|
This function does not always work.
|
|
If there are no active audio playback stream, the mute status might not be available.
|
|
If digital pass-through (S/PDIF, HDMI...) is in use, muting may be unapplicable.
|
|
Also some audio output plugins do not support muting at all.
|
|
Note
|
|
To force silent playback, disable all audio tracks. This is more efficient and reliable than mute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Volume">
|
|
<summary>
|
|
Get/Set the volume in percents (0 = mute, 100 = 0dB)
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.AudioTrackCount">
|
|
<summary>
|
|
Get the number of available audio tracks (int), or -1 if unavailable
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.AudioTrackDescription">
|
|
<summary>
|
|
Retrive the audio track description
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.AudioTrack">
|
|
<summary>
|
|
Get current audio track ID or -1 if no active input.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetAudioTrack(System.Int32)">
|
|
<summary>
|
|
Set current audio track.
|
|
</summary>
|
|
<param name="trackIndex">the track ID (i_id field from track description)</param>
|
|
<returns>true on success, false on error</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Channel">
|
|
<summary>
|
|
Get current audio channel.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetChannel(LibVLCSharp.Shared.AudioOutputChannel)">
|
|
<summary>
|
|
Set current audio channel.
|
|
</summary>
|
|
<param name="channel">the audio channel</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Equals(System.Object)">
|
|
<summary>
|
|
Equals override based on the native instance reference
|
|
</summary>
|
|
<param name="obj">the mediaplayer instance to compare this to</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.GetHashCode">
|
|
<summary>
|
|
Custom hascode implemenation for this MediaPlayer instance
|
|
</summary>
|
|
<returns>the hashcode for this MediaPlayer instance</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.AudioDelay">
|
|
<summary>
|
|
Get current audio delay (microseconds).
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetAudioDelay(System.Int64)">
|
|
<summary>
|
|
Set current audio delay. The audio delay will be reset to zero each
|
|
time the media changes.
|
|
</summary>
|
|
<param name="delay">the audio delay (microseconds)</param>
|
|
<returns>true on success, false on error </returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetVideoCallbacks(LibVLCSharp.Shared.MediaPlayer.LibVLCVideoLockCb,LibVLCSharp.Shared.MediaPlayer.LibVLCVideoUnlockCb,LibVLCSharp.Shared.MediaPlayer.LibVLCVideoDisplayCb)">
|
|
<summary>
|
|
Set callbacks and private data to render decoded video to a custom area in memory.
|
|
Use libvlc_video_set_format() or libvlc_video_set_format_callbacks() to configure the decoded format.
|
|
Warning
|
|
Rendering video into custom memory buffers is considerably less efficient than rendering in a custom window as normal.
|
|
For optimal perfomances, VLC media player renders into a custom window, and does not use this function and associated callbacks.
|
|
It is highly recommended that other LibVLC-based application do likewise.
|
|
To embed video in a window, use libvlc_media_player_set_xid() or equivalent depending on the operating system.
|
|
If window embedding does not fit the application use case, then a custom LibVLC video output display plugin is required to maintain optimal video rendering performances.
|
|
The following limitations affect performance:
|
|
Hardware video decoding acceleration will either be disabled completely, or require(relatively slow) copy from video/DSP memory to main memory.
|
|
Sub-pictures(subtitles, on-screen display, etc.) must be blent into the main picture by the CPU instead of the GPU.
|
|
Depending on the video format, pixel format conversion, picture scaling, cropping and/or picture re-orientation,
|
|
must be performed by the CPU instead of the GPU.
|
|
Memory copying is required between LibVLC reference picture buffers and application buffers (between lock and unlock callbacks).
|
|
</summary>
|
|
<param name="lockCb">callback to lock video memory (must not be NULL)</param>
|
|
<param name="unlockCb">callback to unlock video memory (or NULL if not needed)</param>
|
|
<param name="displayCb">callback to display video (or NULL if not needed)</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetVideoFormat(System.String,System.UInt32,System.UInt32,System.UInt32)">
|
|
<summary>
|
|
Set decoded video chroma and dimensions. This only works in
|
|
combination with MediaPlayer::setCallbacks() , and is mutually exclusive
|
|
with MediaPlayer::setFormatCallbacks()
|
|
</summary>
|
|
<param name="chroma">a four-characters string identifying the chroma (e.g."RV32" or "YUYV")</param>
|
|
<param name="width">pixel width</param>
|
|
<param name="height">pixel height</param>
|
|
<param name="pitch">line pitch (in bytes)</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetVideoFormatCallbacks(LibVLCSharp.Shared.MediaPlayer.LibVLCVideoFormatCb,LibVLCSharp.Shared.MediaPlayer.LibVLCVideoCleanupCb)">
|
|
<summary>
|
|
Set decoded video chroma and dimensions.
|
|
This only works in combination with libvlc_video_set_callbacks().
|
|
</summary>
|
|
<param name="formatCb">callback to select the video format (cannot be NULL)</param>
|
|
<param name="cleanupCb">callback to release any allocated resources (or NULL)</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.EnableKeyInput">
|
|
<summary>
|
|
Enable or disable key press events handling, according to the LibVLC hotkeys configuration.
|
|
By default and for historical reasons, keyboard events are handled by the LibVLC video widget.
|
|
Note
|
|
On X11, there can be only one subscriber for key press and mouse click events per window.
|
|
If your application has subscribed to those events for the X window ID of the video widget,
|
|
then LibVLC will not be able to handle key presses and mouse clicks in any case.
|
|
Warning
|
|
This function is only implemented for X11 and Win32 at the moment.
|
|
true to handle key press events, false to ignore them.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.EnableMouseInput">
|
|
<summary>
|
|
Enable or disable mouse click events handling.
|
|
By default, those events are handled. This is needed for DVD menus to work, as well as a few video filters such as "puzzle".
|
|
Warning
|
|
This function is only implemented for X11 and Win32 at the moment.
|
|
true to handle mouse click events, false to ignore them.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Size(System.UInt32,System.UInt32@,System.UInt32@)">
|
|
<summary>
|
|
Get the pixel dimensions of a video.
|
|
</summary>
|
|
<param name="num">number of the video (starting from, and most commonly 0)</param>
|
|
<param name="px">pointer to get the pixel width [OUT]</param>
|
|
<param name="py">pointer to get the pixel height [OUT]</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Cursor(System.UInt32,System.Int32@,System.Int32@)">
|
|
<summary>
|
|
Get the mouse pointer coordinates over a video.
|
|
Coordinates are expressed in terms of the decoded video resolution, not in terms of pixels on the screen/viewport
|
|
(to get the latter, you can query your windowing system directly).
|
|
Either of the coordinates may be negative or larger than the corresponding dimension of the video,
|
|
if the cursor is outside the rendering area.
|
|
Warning
|
|
The coordinates may be out-of-date if the pointer is not located on the video rendering area.
|
|
LibVLC does not track the pointer if it is outside of the video widget.
|
|
Note
|
|
LibVLC does not support multiple pointers(it does of course support multiple input devices sharing the same pointer) at the moment.
|
|
</summary>
|
|
<param name="num">number of the video (starting from, and most commonly 0)</param>
|
|
<param name="px">pointer to get the abscissa [OUT]</param>
|
|
<param name="py">pointer to get the ordinate [OUT]</param>
|
|
<returns>true on success, false on failure</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Scale">
|
|
<summary>
|
|
Get/Set the current video scaling factor. See also MediaPlayer::setScale() .
|
|
That is the ratio of the number of
|
|
pixels on screen to the number of pixels in the original decoded video
|
|
in each dimension.Zero is a special value; it will adjust the video
|
|
to the output window/drawable(in windowed mode) or the entire screen.
|
|
Note that not all video outputs support scaling.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.AspectRatio">
|
|
<summary>
|
|
Get/set current video aspect ratio.
|
|
Set to null to reset to default
|
|
Invalid aspect ratios are ignored.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Spu">
|
|
<summary>
|
|
The current video subtitle track
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetSpu(System.Int32)">
|
|
<summary>
|
|
Set Spu (subtitle)
|
|
</summary>
|
|
<param name="spu">Video subtitle track to select (id from track description)</param>
|
|
<returns>true on success, false otherwise</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.SpuCount">
|
|
<summary>
|
|
Get the number of available video subtitles.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.SpuDescription">
|
|
<summary>
|
|
Retrieve SpuDescription in a TrackDescription struct
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.SpuDelay">
|
|
<summary>
|
|
Get the current subtitle delay.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetSpuDelay(System.Int64)">
|
|
<summary>
|
|
Set the subtitle delay.
|
|
This affects the timing of when the subtitle will be displayed.
|
|
Positive values result in subtitles being displayed later, while negative values will result in subtitles being displayed earlier.
|
|
The subtitle delay will be reset to zero each time the media changes.
|
|
</summary>
|
|
<param name="delay">time (in microseconds) the display of subtitles should be delayed</param>
|
|
<returns>true if successful, false otherwise</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.TitleDescription">
|
|
<summary>
|
|
Get the description of available titles.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.FullChapterDescriptions(System.Int32)">
|
|
<summary>
|
|
Get the full description of available chapters.
|
|
</summary>
|
|
<param name="titleIndex">Index of the title to query for chapters (uses current title if set to -1)</param>
|
|
<returns>Array of chapter descriptions.</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.ChapterDescription(System.Int32)">
|
|
<summary>
|
|
Get the description of available chapters for specific title.
|
|
</summary>
|
|
<param name="titleIndex">selected title</param>
|
|
<returns>chapter descriptions</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.CropGeometry">
|
|
<summary>
|
|
Get/Set current crop filter geometry.
|
|
Empty string to unset
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Teletext">
|
|
<summary>
|
|
Get current teletext page requested.
|
|
Set new teletext page to retrieve.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.VideoTrackCount">
|
|
<summary>
|
|
Get number of available video tracks.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.VideoTrackDescription">
|
|
<summary>
|
|
Get the description of available video tracks.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.VideoTrack">
|
|
<summary>
|
|
Get current video track ID (int) or -1 if no active input.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetVideoTrack(System.Int32)">
|
|
<summary>
|
|
Set video track.
|
|
</summary>
|
|
<param name="trackIndex">the track ID (i_id field from track description)</param>
|
|
<returns>true on sucess, false out of range</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.TakeSnapshot(System.UInt32,System.String,System.UInt32,System.UInt32)">
|
|
<summary>
|
|
Take a snapshot of the current video window.
|
|
If i_width AND i_height is 0, original size is used. If i_width XOR
|
|
i_height is 0, original aspect-ratio is preserved.
|
|
</summary>
|
|
<param name="num">number of video output (typically 0 for the first/only one)</param>
|
|
<param name="filePath">the path where to save the screenshot to</param>
|
|
<param name="width">the snapshot's width</param>
|
|
<param name="height">the snapshot's height</param>
|
|
<returns>true on success</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetDeinterlace(System.String)">
|
|
<summary>
|
|
Enable or disable deinterlace filter
|
|
</summary>
|
|
<param name="deinterlaceMode">type of deinterlace filter, null to disable</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.MarqueeInt(LibVLCSharp.Shared.VideoMarqueeOption)">
|
|
<summary>
|
|
Get an integer marquee option value
|
|
</summary>
|
|
<param name="option">marq option to get</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.MarqueeString(LibVLCSharp.Shared.VideoMarqueeOption)">
|
|
<summary>
|
|
Get a string marquee option value
|
|
</summary>
|
|
<param name="option">marq option to get</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetMarqueeInt(LibVLCSharp.Shared.VideoMarqueeOption,System.Int32)">
|
|
<summary>
|
|
Enable, disable or set an integer marquee option
|
|
Setting libvlc_marquee_Enable has the side effect of enabling (arg !0)
|
|
or disabling (arg 0) the marq filter.
|
|
</summary>
|
|
<param name="option">marq option to set</param>
|
|
<param name="value">marq option value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetMarqueeString(LibVLCSharp.Shared.VideoMarqueeOption,System.String)">
|
|
<summary>
|
|
Enable, disable or set an string marquee option
|
|
</summary>
|
|
<param name="option">marq option to set</param>
|
|
<param name="marqueeValue">marq option value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.LogoInt(LibVLCSharp.Shared.VideoLogoOption)">
|
|
<summary>
|
|
Get integer logo option.
|
|
</summary>
|
|
<param name="option">logo option to get, values of libvlc_video_logo_option_t</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetLogoInt(LibVLCSharp.Shared.VideoLogoOption,System.Int32)">
|
|
<summary>
|
|
Set logo option as integer. Options that take a different type value
|
|
are ignored. Passing libvlc_logo_enable as option value has the side
|
|
effect of starting (arg !0) or stopping (arg 0) the logo filter.
|
|
</summary>
|
|
<param name="option">logo option to set, values of libvlc_video_logo_option_t</param>
|
|
<param name="value">logo option value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetLogoString(LibVLCSharp.Shared.VideoLogoOption,System.String)">
|
|
<summary>
|
|
Set logo option as string. Options that take a different type value are ignored.
|
|
</summary>
|
|
<param name="option">logo option to set, values of libvlc_video_logo_option_t</param>
|
|
<param name="logoValue">logo option value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.AdjustInt(LibVLCSharp.Shared.VideoAdjustOption)">
|
|
<summary>
|
|
Get integer adjust option.
|
|
</summary>
|
|
<param name="option">adjust option to get, values of libvlc_video_adjust_option_t</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetAdjustInt(LibVLCSharp.Shared.VideoAdjustOption,System.Int32)">
|
|
<summary>
|
|
Set adjust option as integer. Options that take a different type value
|
|
are ignored. Passing libvlc_adjust_enable as option value has the side
|
|
effect of starting (arg !0) or stopping (arg 0) the adjust filter.
|
|
</summary>
|
|
<param name="option">adust option to set, values of libvlc_video_adjust_option_t</param>
|
|
<param name="value">adjust option value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.AdjustFloat(LibVLCSharp.Shared.VideoAdjustOption)">
|
|
<summary>
|
|
Get adjust option float value
|
|
</summary>
|
|
<param name="option">The option for which to get the value</param>
|
|
<returns>the float value for a given option</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetAdjustFloat(LibVLCSharp.Shared.VideoAdjustOption,System.Single)">
|
|
<summary>
|
|
Set adjust option as float. Options that take a different type value are ignored.
|
|
</summary>
|
|
<param name="option">adust option to set, values of <see cref="T:LibVLCSharp.Shared.VideoAdjustOption"/></param>
|
|
<param name="value">adjust option value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.AddSlave(LibVLCSharp.Shared.MediaSlaveType,System.String,System.Boolean)">
|
|
<summary>
|
|
Add a slave to the current media player.
|
|
note If the player is playing, the slave will be added directly. This call
|
|
will also update the slave list of the attached VLC::Media.
|
|
</summary>
|
|
<param name="type">subtitle or audio</param>
|
|
<param name="uri">Uri of the slave (should contain a valid scheme).</param>
|
|
<param name="select">True if this slave should be selected when it's loaded</param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Viewpoint">
|
|
<summary>
|
|
Current 360 viewpoint of this mediaplayer.
|
|
<para/>Update with <see cref="M:LibVLCSharp.Shared.MediaPlayer.UpdateViewpoint(System.Single,System.Single,System.Single,System.Single,System.Boolean)"/>
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.UpdateViewpoint(System.Single,System.Single,System.Single,System.Single,System.Boolean)">
|
|
<summary>
|
|
Update the video viewpoint information.
|
|
The values are set asynchronously, it will be used by the next frame displayed.
|
|
It is safe to call this function before the media player is started.
|
|
LibVLC 3.0.0 and later
|
|
</summary>
|
|
<param name="yaw">view point yaw in degrees ]-180;180]</param>
|
|
<param name="pitch">view point pitch in degrees ]-90;90]</param>
|
|
<param name="roll">view point roll in degrees ]-180;180]</param>
|
|
<param name="fov">field of view in degrees ]0;180[ (default 80.)</param>
|
|
<param name="absolute">if true replace the old viewpoint with the new one. If false, increase/decrease it.</param>
|
|
<returns>true if successful, false otherwise</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetRenderer(LibVLCSharp.Shared.RendererItem)">
|
|
<summary>
|
|
Set a renderer to the media player.
|
|
</summary>
|
|
<param name="rendererItem">discovered renderer item or null to fallback on local rendering</param>
|
|
<returns>true on success, false otherwise</returns>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.Role">
|
|
<summary>Gets the media role.
|
|
<para/> version LibVLC 3.0.0 and later.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.SetRole(LibVLCSharp.Shared.MediaPlayerRole)">
|
|
<summary>Sets the media role.
|
|
<para/> version LibVLC 3.0.0 and later.
|
|
</summary>
|
|
<returns>true on success, false otherwise</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Retain">
|
|
<summary>Increments the native reference counter for this mediaplayer instance</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.EnableHardwareDecoding">
|
|
<summary>
|
|
Enable/disable hardware decoding in a crossplatform way.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.FileCaching">
|
|
<summary>
|
|
Caching value for local files, in milliseconds [0 .. 60000ms]
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.NetworkCaching">
|
|
<summary>
|
|
Caching value for network resources, in milliseconds [0 .. 60000ms]
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCVideoLockCb">
|
|
<summary>
|
|
<para>A LibVLC media player plays one media (usually in a custom drawable).</para>
|
|
<para>@{</para>
|
|
<para></para>
|
|
<para>LibVLC simple media player external API</para>
|
|
</summary>
|
|
<summary>Opaque equalizer handle.</summary>
|
|
<remarks>Equalizer settings can be applied to a media player.</remarks>
|
|
<summary>Callback prototype to allocate and lock a picture buffer.</summary>
|
|
<param name="opaque">private pointer as passed to libvlc_video_set_callbacks() [IN]</param>
|
|
<param name="planes">
|
|
<para>start address of the pixel planes (LibVLC allocates the array</para>
|
|
<para>of void pointers, this callback must initialize the array) [OUT]</para>
|
|
</param>
|
|
<returns>
|
|
<para>a private pointer for the display and unlock callbacks to identify</para>
|
|
<para>the picture buffers</para>
|
|
</returns>
|
|
<remarks>
|
|
<para>Whenever a new video frame needs to be decoded, the lock callback is</para>
|
|
<para>invoked. Depending on the video chroma, one or three pixel planes of</para>
|
|
<para>adequate dimensions must be returned via the second parameter. Those</para>
|
|
<para>planes must be aligned on 32-bytes boundaries.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCVideoUnlockCb">
|
|
<summary>Callback prototype to unlock a picture buffer.</summary>
|
|
<param name="opaque">private pointer as passed to libvlc_video_set_callbacks() [IN]</param>
|
|
<param name="picture">private pointer returned from the</param>
|
|
<param name="planes">pixel planes as defined by the</param>
|
|
<remarks>
|
|
<para>When the video frame decoding is complete, the unlock callback is invoked.</para>
|
|
<para>This callback might not be needed at all. It is only an indication that the</para>
|
|
<para>application can now read the pixel values if it needs to.</para>
|
|
<para>A picture buffer is unlocked after the picture is decoded,</para>
|
|
<para>but before the picture is displayed.</para>
|
|
<para>callback [IN]</para>
|
|
<para>callback (this parameter is only for convenience) [IN]</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCVideoDisplayCb">
|
|
<summary>Callback prototype to display a picture.</summary>
|
|
<param name="opaque">private pointer as passed to libvlc_video_set_callbacks() [IN]</param>
|
|
<param name="picture">private pointer returned from the</param>
|
|
<remarks>
|
|
<para>When the video frame needs to be shown, as determined by the media playback</para>
|
|
<para>clock, the display callback is invoked.</para>
|
|
<para>callback [IN]</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCVideoFormatCb">
|
|
<summary>
|
|
<para>Callback prototype to configure picture buffers format.</para>
|
|
<para>This callback gets the format of the video as output by the video decoder</para>
|
|
<para>and the chain of video filters (if any). It can opt to change any parameter</para>
|
|
<para>as it needs. In that case, LibVLC will attempt to convert the video format</para>
|
|
<para>(rescaling and chroma conversion) but these operations can be CPU intensive.</para>
|
|
</summary>
|
|
<param name="opaque">
|
|
<para>pointer to the private pointer passed to</para>
|
|
<para>libvlc_video_set_callbacks() [IN/OUT]</para>
|
|
</param>
|
|
<param name="chroma">pointer to the 4 bytes video format identifier [IN/OUT]</param>
|
|
<param name="width">pointer to the pixel width [IN/OUT]</param>
|
|
<param name="height">pointer to the pixel height [IN/OUT]</param>
|
|
<param name="pitches">
|
|
<para>table of scanline pitches in bytes for each pixel plane</para>
|
|
<para>(the table is allocated by LibVLC) [OUT]</para>
|
|
</param>
|
|
<param name="lines">table of scanlines count for each plane [OUT]</param>
|
|
<returns>the number of picture buffers allocated, 0 indicates failure</returns>
|
|
<remarks>
|
|
<para>For each pixels plane, the scanline pitch must be bigger than or equal to</para>
|
|
<para>the number of bytes per pixel multiplied by the pixel width.</para>
|
|
<para>Similarly, the number of scanlines must be bigger than of equal to</para>
|
|
<para>the pixel height.</para>
|
|
<para>Furthermore, we recommend that pitches and lines be multiple of 32</para>
|
|
<para>to not break assumptions that might be held by optimized code</para>
|
|
<para>in the video decoders, video filters and/or video converters.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCVideoCleanupCb">
|
|
<summary>Callback prototype to configure picture buffers format.</summary>
|
|
<param name="opaque">
|
|
<para>private pointer as passed to libvlc_video_set_callbacks()</para>
|
|
<para>(and possibly modified by</para>
|
|
</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCAudioSetupCb">
|
|
<summary>Callback prototype to setup the audio playback.</summary>
|
|
<param name="opaque">
|
|
<para>pointer to the data pointer passed to</para>
|
|
<para>libvlc_audio_set_callbacks() [IN/OUT]</para>
|
|
</param>
|
|
<param name="format">4 bytes sample format [IN/OUT]</param>
|
|
<param name="rate">sample rate [IN/OUT]</param>
|
|
<param name="channels">channels count [IN/OUT]</param>
|
|
<returns>0 on success, anything else to skip audio playback</returns>
|
|
<remarks>This is called when the media player needs to create a new audio output.</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCAudioCleanupCb">
|
|
<summary>Callback prototype for audio playback cleanup.</summary>
|
|
<param name="opaque">data pointer as passed to libvlc_audio_set_callbacks() [IN]</param>
|
|
<remarks>This is called when the media player no longer needs an audio output.</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCAudioPlayCb">
|
|
<summary>Callback prototype for audio playback.</summary>
|
|
<param name="data">data pointer as passed to libvlc_audio_set_callbacks() [IN]</param>
|
|
<param name="samples">pointer to a table of audio samples to play back [IN]</param>
|
|
<param name="count">number of audio samples to play back</param>
|
|
<param name="pts">expected play time stamp (see libvlc_delay())</param>
|
|
<remarks>
|
|
<para>The LibVLC media player decodes and post-processes the audio signal</para>
|
|
<para>asynchronously (in an internal thread). Whenever audio samples are ready</para>
|
|
<para>to be queued to the output, this callback is invoked.</para>
|
|
<para>The number of samples provided per invocation may depend on the file format,</para>
|
|
<para>the audio coding algorithm, the decoder plug-in, the post-processing</para>
|
|
<para>filters and timing. Application must not assume a certain number of samples.</para>
|
|
<para>The exact format of audio samples is determined by libvlc_audio_set_format()</para>
|
|
<para>or libvlc_audio_set_format_callbacks() as is the channels layout.</para>
|
|
<para>Note that the number of samples is per channel. For instance, if the audio</para>
|
|
<para>track sampling rate is 48000 Hz, then 1200 samples represent 25 milliseconds</para>
|
|
<para>of audio signal - regardless of the number of audio channels.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCAudioPauseCb">
|
|
<summary>Callback prototype for audio pause.</summary>
|
|
<param name="data">data pointer as passed to libvlc_audio_set_callbacks() [IN]</param>
|
|
<param name="pts">time stamp of the pause request (should be elapsed already)</param>
|
|
<remarks>
|
|
<para>LibVLC invokes this callback to pause audio playback.</para>
|
|
<para>The pause callback is never called if the audio is already paused.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCAudioResumeCb">
|
|
<summary>Callback prototype for audio resumption.</summary>
|
|
<param name="data">data pointer as passed to libvlc_audio_set_callbacks() [IN]</param>
|
|
<param name="pts">time stamp of the resumption request (should be elapsed already)</param>
|
|
<remarks>
|
|
<para>LibVLC invokes this callback to resume audio playback after it was</para>
|
|
<para>previously paused.</para>
|
|
<para>The resume callback is never called if the audio is not paused.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCAudioFlushCb">
|
|
<summary>Callback prototype for audio buffer flush.
|
|
<para>LibVLC invokes this callback if it needs to discard all pending buffers and</para>
|
|
<para>stop playback as soon as possible. This typically occurs when the media is stopped.</para>
|
|
</summary>
|
|
<param name="data">data pointer as passed to libvlc_audio_set_callbacks() [IN]</param>
|
|
<param name="pts">current presentation timestamp</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCAudioDrainCb">
|
|
<summary>Callback prototype for audio buffer drain.</summary>
|
|
<param name="data">data pointer as passed to libvlc_audio_set_callbacks() [IN]</param>
|
|
<remarks>
|
|
<para>LibVLC may invoke this callback when the decoded audio track is ending.</para>
|
|
<para>There will be no further decoded samples for the track, but playback should</para>
|
|
<para>nevertheless continue until all already pending buffers are rendered.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayer.LibVLCVolumeCb">
|
|
<summary>Callback prototype for audio volume change.</summary>
|
|
<param name="data">data pointer as passed to libvlc_audio_set_callbacks() [IN]</param>
|
|
<param name="volume">software volume (1. = nominal, 0. = mute)</param>
|
|
<param name="mute">muted flag</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayer.EventManager">
|
|
<summary>
|
|
Get the Event Manager from which the media player send event.
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.MediaChanged">
|
|
<summary>
|
|
The media of this mediaplayer changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.NothingSpecial">
|
|
<summary>
|
|
Nothing special to report
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Opening">
|
|
<summary>
|
|
The mediaplayer is opening a media
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Buffering">
|
|
<summary>
|
|
The mediaplayer is buffering
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Playing">
|
|
<summary>
|
|
The mediaplayer started playing a media
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Paused">
|
|
<summary>
|
|
The mediaplayer paused playback
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Stopped">
|
|
<summary>
|
|
The mediaplayer stopped playback
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Forward">
|
|
<summary>
|
|
The mediaplayer went forward in the playback
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Backward">
|
|
<summary>
|
|
The mediaplayer went backward in the playback
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.EndReached">
|
|
<summary>
|
|
The mediaplayer reached the end of the playback
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.EncounteredError">
|
|
<summary>
|
|
The mediaplayer encountered an error during playback
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.TimeChanged">
|
|
<summary>
|
|
The mediaplayer's playback time changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.PositionChanged">
|
|
<summary>
|
|
The mediaplayer's position changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.SeekableChanged">
|
|
<summary>
|
|
The mediaplayer's seek capability changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.PausableChanged">
|
|
<summary>
|
|
The mediaplayer's pause capability changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.TitleChanged">
|
|
<summary>
|
|
The title of the mediaplayer changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.ChapterChanged">
|
|
<summary>
|
|
The mediaplayer changed the chapter of a media
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.SnapshotTaken">
|
|
<summary>
|
|
The mediaplayer took a snapshot
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.LengthChanged">
|
|
<summary>
|
|
The length of a playback changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Vout">
|
|
<summary>
|
|
The Video Output count of the MediaPlayer changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.ScrambledChanged">
|
|
<summary>
|
|
The mediaplayer scrambled status changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.ESAdded">
|
|
<summary>
|
|
The mediaplayer has a new Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.ESDeleted">
|
|
<summary>
|
|
The mediaplayer has one less Elementary Stream (ES)
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.ESSelected">
|
|
<summary>
|
|
An Elementary Stream (ES) was selected
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.AudioDevice">
|
|
<summary>
|
|
The mediaplayer's audio device changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Corked">
|
|
<summary>
|
|
The mediaplayer is corked
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Uncorked">
|
|
<summary>
|
|
The mediaplayer is uncorked
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Muted">
|
|
<summary>
|
|
The mediaplayer is muted
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.Unmuted">
|
|
<summary>
|
|
The mediaplayer is unmuted
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayer.VolumeChanged">
|
|
<summary>
|
|
The mediaplayer's volume changed
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayer.Dispose(System.Boolean)">
|
|
<summary>
|
|
Dispose override
|
|
Effectively stops playback and disposes a media if any
|
|
</summary>
|
|
<param name="disposing">release any unmanaged resources</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Title">
|
|
<summary>Description for titles</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Title.Menu">
|
|
<summary>
|
|
Menu title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Title.Interactive">
|
|
<summary>
|
|
Interactive title
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VideoMarqueeOption">
|
|
<summary>Marq options definition</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Enable">
|
|
<summary>
|
|
Enable marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Text">
|
|
<summary>
|
|
Text marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Color">
|
|
<summary>
|
|
Color marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Opacity">
|
|
<summary>
|
|
Opacity marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Position">
|
|
<summary>
|
|
Position marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Refresh">
|
|
<summary>
|
|
Refresh marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Size">
|
|
<summary>
|
|
Size marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Timeout">
|
|
<summary>
|
|
Timeout marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.X">
|
|
<summary>
|
|
X marquee
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoMarqueeOption.Y">
|
|
<summary>
|
|
Y marquee
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.NavigationMode">
|
|
<summary>Navigation mode</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.NavigationMode.Activate">
|
|
<summary>
|
|
Activate
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.NavigationMode.Up">
|
|
<summary>
|
|
Navigation up
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.NavigationMode.Down">
|
|
<summary>
|
|
Navigation down
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.NavigationMode.Left">
|
|
<summary>
|
|
Navigation left
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.NavigationMode.Right">
|
|
<summary>
|
|
Navigation right
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.NavigationMode.Popup">
|
|
<summary>
|
|
Navigation popup
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Position">
|
|
<summary>Enumeration of values used to set position (e.g. of video title).</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.Disable">
|
|
<summary>
|
|
Disable
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.Center">
|
|
<summary>
|
|
Center video title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.Left">
|
|
<summary>
|
|
Left video title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.Right">
|
|
<summary>
|
|
Right video title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.Top">
|
|
<summary>
|
|
Top video title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.TopLeft">
|
|
<summary>
|
|
TopLeft video title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.TopRight">
|
|
<summary>
|
|
TopRight video title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.Bottom">
|
|
<summary>
|
|
Bottom video title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.BottomLeft">
|
|
<summary>
|
|
BottomLeft video title
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Position.BottomRight">
|
|
<summary>
|
|
BottomRight video title
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.TeletextKey">
|
|
<summary>
|
|
<para>Enumeration of teletext keys than can be passed via</para>
|
|
<para>libvlc_video_set_teletext()</para>
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TeletextKey.Red">
|
|
<summary>
|
|
Red
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TeletextKey.Green">
|
|
<summary>
|
|
Green
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TeletextKey.Yellow">
|
|
<summary>
|
|
Yellow
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TeletextKey.Blue">
|
|
<summary>
|
|
Blue
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.TeletextKey.Index">
|
|
<summary>
|
|
Index
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VideoLogoOption">
|
|
<summary>
|
|
option values for libvlc_video_{get,set}_logo_{int,string}
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoLogoOption.Enable">
|
|
<summary>
|
|
Enable
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoLogoOption.File">
|
|
<summary>
|
|
string argument, "file,d,t;file,d,t;..."
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoLogoOption.X">
|
|
<summary>
|
|
X
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoLogoOption.Y">
|
|
<summary>
|
|
Y
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoLogoOption.Delay">
|
|
<summary>
|
|
Delay
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoLogoOption.Repeat">
|
|
<summary>
|
|
Repeat
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoLogoOption.Opacity">
|
|
<summary>
|
|
Opacity
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoLogoOption.Position">
|
|
<summary>
|
|
Position
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VideoAdjustOption">
|
|
<summary>
|
|
option values for libvlc_video_{get,set}_adjust_{int,float,bool}
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoAdjustOption.Enable">
|
|
<summary>
|
|
Enable
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoAdjustOption.Contrast">
|
|
<summary>
|
|
Contrast
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoAdjustOption.Brightness">
|
|
<summary>
|
|
Brightness
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoAdjustOption.Hue">
|
|
<summary>
|
|
Hue
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoAdjustOption.Saturation">
|
|
<summary>
|
|
Saturation
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoAdjustOption.Gamma">
|
|
<summary>
|
|
Gamma
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.AudioOutputChannel">
|
|
<summary>
|
|
Audio channels
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.AudioOutputChannel.Error">
|
|
<summary>
|
|
Error
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.AudioOutputChannel.Stereo">
|
|
<summary>
|
|
Stereo mode
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.AudioOutputChannel.RStereo">
|
|
<summary>
|
|
RStereo mode
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.AudioOutputChannel.Left">
|
|
<summary>
|
|
Left mode
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.AudioOutputChannel.Right">
|
|
<summary>
|
|
Right mode
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.AudioOutputChannel.Dolbys">
|
|
<summary>
|
|
Dolbys mode
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerRole">
|
|
<summary>Media player roles.</summary>
|
|
<remarks>
|
|
<para>LibVLC 3.0.0 and later.</para>
|
|
<para>See</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.None">
|
|
<summary>Don't use a media player role</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.Music">
|
|
<summary>Music (or radio) playback</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.Video">
|
|
<summary>Video playback</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.Communication">
|
|
<summary>Speech, real-time communication</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.Game">
|
|
<summary>Video game</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.LiblvcRoleNotification">
|
|
<summary>User interaction feedback</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.Animation">
|
|
<summary>Embedded animation (e.g. in web page)</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.Production">
|
|
<summary>Audio editing/production</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.Accessibility">
|
|
<summary>Accessibility</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerRole.Test">
|
|
<summary>Testing</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.AspectRatio">
|
|
<summary>
|
|
Describes how content is resized to fill its allocated space
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.AspectRatio.BestFit">
|
|
<summary>
|
|
Best fit
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.AspectRatio.FitScreen">
|
|
<summary>
|
|
Fit screen
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.AspectRatio.Fill">
|
|
<summary>
|
|
Fill
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.AspectRatio._16_9">
|
|
<summary>
|
|
16/9
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.AspectRatio._4_3">
|
|
<summary>
|
|
4/3
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.AspectRatio.Original">
|
|
<summary>
|
|
Original
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager">
|
|
<summary>
|
|
Aspect ratio manager
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.VideoView"/> and <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> properties
|
|
need to be set in order to work</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager.AspectRatioChanged">
|
|
<summary>
|
|
Occurs when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager.AspectRatio"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher,LibVLCSharp.Shared.MediaPlayerElement.IDisplayInformation)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
<param name="displayInformation">display information</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager.AspectRatio">
|
|
<summary>
|
|
Gets the aspect ratio
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager.OnVideoViewChanged(LibVLCSharp.Shared.IVideoControl,LibVLCSharp.Shared.IVideoControl)">
|
|
<summary>
|
|
Called when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.VideoView"/> property value changes
|
|
</summary>
|
|
<param name="oldValue">old value</param>
|
|
<param name="newValue">new value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.AudioTracksManager">
|
|
<summary>
|
|
Audio tracks manager
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AudioTracksManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initialized a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.AudioTracksManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.AudioTracksManager.CurrentTrackId">
|
|
<summary>
|
|
Gets or sets the current track identifier
|
|
</summary>
|
|
<remarks>returns -1 if no active input</remarks>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.AudioTracksManager.Tracks">
|
|
<summary>
|
|
Gets the tracks descriptions
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier">
|
|
<summary>
|
|
Notifies when the playback controls should be shown or hidden
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.Shown">
|
|
<summary>
|
|
Occurs whenever the playback controls should be shown
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.Hidden">
|
|
<summary>
|
|
Occurs whenever the playback controls should be hidden
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.Enabled">
|
|
<summary>
|
|
Gets or sets a value indicating whether the auto hide feature should be enabled or not
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.Show(System.Boolean)">
|
|
<summary>
|
|
Shows the playback controls if they're hidden
|
|
</summary>
|
|
<param name="pointerIsOnPlaybackControls">true if the pointer is on playback controls, false otherwise</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.Hide">
|
|
<summary>
|
|
Hides the playback controls if they're shown
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.AutoHideNotifier.Dispose">
|
|
<summary>
|
|
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier">
|
|
<summary>
|
|
Buffering progress notifier
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier.IsBufferingChanged">
|
|
<summary>
|
|
Occurs when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier.IsBuffering"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier.Buffering">
|
|
<summary>
|
|
Occurs when buffering
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier.IsBuffering">
|
|
<summary>
|
|
Gets a value indicating whether the media is buffering
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier.BufferingProgress">
|
|
<summary>
|
|
Gets the percentage of buffering completed (between 0 and 1)
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.BufferingProgressNotifier.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer">
|
|
<summary>
|
|
Discovers the cast renderers
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.LibVLC"/> and <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> properties
|
|
need to be set in order to work</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer.CastAvailableChanged">
|
|
<summary>
|
|
Occurs when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer.CastAvailable"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer.CastAvailable">
|
|
<summary>
|
|
Gets or sets a value indicating whether there are renderers discovered and <see cref="T:LibVLCSharp.Shared.MediaPlayer"/> is not null
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer.Enabled">
|
|
<summary>
|
|
Gets or sets a value indicating whether the discover should be enabled or not
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer.Renderers">
|
|
<summary>
|
|
Gets the renderers list
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.DeviceAwakeningManager">
|
|
<summary>
|
|
Manager to keep the device awake
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.DeviceAwakeningManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher,LibVLCSharp.Shared.MediaPlayerElement.IDisplayRequest)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.DeviceAwakeningManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
<param name="displayRequest">display request object</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.DeviceAwakeningManager.KeepDeviceAwake">
|
|
<summary>
|
|
Gets or sets a value indicating whether the device should be kept awake
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.DeviceAwakeningManager.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.DeviceAwakeningManager.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.IDispatcher">
|
|
<summary>
|
|
Interface for an object that provides services for managing the queue of work items for a thread
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.IDispatcher.InvokeAsync(System.Action)">
|
|
<summary>
|
|
Schedules the provided callback on the UI thread from a worker threa
|
|
</summary>
|
|
<param name="action">The callback on which the dispatcher returns when the event is dispatched</param>
|
|
<returns>The task object representing the asynchronous operation</returns>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.IDisplayInformation">
|
|
<summary>
|
|
Interface to get display-related information for an application view
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.IDisplayInformation.ScalingFactor">
|
|
<summary>
|
|
Gets the scale factor
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.IDisplayRequest">
|
|
<summary>
|
|
Interface for display requests
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.IDisplayRequest.RequestActive">
|
|
<summary>
|
|
Activates a display request
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.IDisplayRequest.RequestRelease">
|
|
<summary>
|
|
Deactivates a display request
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManager">
|
|
<summary>
|
|
Media player element manager
|
|
</summary>
|
|
<remarks>The <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work.
|
|
The <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.VideoView"/> property needs to be set if the <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.AspectRatioManager"/> is used.
|
|
The <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.LibVLC"/> property needs to be set if the <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.CastRenderersDiscoverer"/> is used.
|
|
</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher,LibVLCSharp.Shared.MediaPlayerElement.IDisplayInformation,LibVLCSharp.Shared.MediaPlayerElement.IDisplayRequest)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
<param name="displayInformation">display information</param>
|
|
<param name="displayRequest">display request object</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManager.OnVideoViewChanged(LibVLCSharp.Shared.IVideoControl,LibVLCSharp.Shared.IVideoControl)">
|
|
<summary>
|
|
Called when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.VideoView"/> property value changes
|
|
</summary>
|
|
<param name="oldValue">old value</param>
|
|
<param name="newValue">new value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManager.OnLibVLCChanged(LibVLCSharp.Shared.LibVLC,LibVLCSharp.Shared.LibVLC)">
|
|
<summary>
|
|
Called when <see cref="T:LibVLCSharp.Shared.LibVLC"/> property value changes
|
|
</summary>
|
|
<param name="oldValue">old value</param>
|
|
<param name="newValue">new value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManager.OnMediaPlayerChanged(LibVLCSharp.Shared.MediaPlayer,LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Called when <see cref="T:LibVLCSharp.Shared.MediaPlayer"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManager.Get``1">
|
|
<summary>
|
|
Gets a manager of a given type
|
|
</summary>
|
|
<typeparam name="T">manager type</typeparam>
|
|
<returns>the manager of the given type</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManager.Dispose">
|
|
<summary>
|
|
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase">
|
|
<summary>
|
|
Base class for managers used by MediaPlayerElement or PlaybackControls
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.VideoViewChanged">
|
|
<summary>
|
|
Occurs when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.VideoView"/> property changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.LibVLCChanged">
|
|
<summary>
|
|
Occurs when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.LibVLC"/> property changed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayerChanged">
|
|
<summary>
|
|
Occurs when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property changed
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.Finalize">
|
|
<summary>
|
|
Finalizer
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.VideoView">
|
|
<summary>
|
|
Gets or sets the video view
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.LibVLC">
|
|
<summary>
|
|
Gets or sets the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.LibVLC"/> instance
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer">
|
|
<summary>
|
|
Gets or sets the media player
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.OnVideoViewChanged(LibVLCSharp.Shared.IVideoControl,LibVLCSharp.Shared.IVideoControl)">
|
|
<summary>
|
|
Called when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.VideoView"/> property value changes
|
|
</summary>
|
|
<param name="oldValue">old value</param>
|
|
<param name="newValue">new value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.OnLibVLCChanged(LibVLCSharp.Shared.LibVLC,LibVLCSharp.Shared.LibVLC)">
|
|
<summary>
|
|
Called when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.LibVLC"/> property value changes
|
|
</summary>
|
|
<param name="oldValue">old value</param>
|
|
<param name="newValue">new value</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.OnMediaPlayerChanged(LibVLCSharp.Shared.MediaPlayer,LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Called when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.DispatcherInvokeEventHandlerAsync(System.EventHandler)">
|
|
<summary>
|
|
Fires an event using dispatcher
|
|
</summary>
|
|
<param name="eventHandler">event handler</param>
|
|
<returns>The task object representing the asynchronous operation</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.DispatcherInvokeEventHandlerAsync``1(System.EventHandler{``0},``0)">
|
|
<summary>
|
|
Fires an event using dispatcher
|
|
</summary>
|
|
<typeparam name="TEventArgs">event args type</typeparam>
|
|
<param name="eventHandler">event handler</param>
|
|
<param name="eventArgs">event args</param>
|
|
<returns>The task object representing the asynchronous operation</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.DispatcherInvokeAsync(System.Action)">
|
|
<summary>
|
|
Schedules the provided callback on the UI thread from a worker threa
|
|
</summary>
|
|
<param name="action">The callback on which the dispatcher returns when the event is dispatched</param>
|
|
<returns>The task object representing the asynchronous operation</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.Dispose">
|
|
<summary>
|
|
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition">
|
|
<summary>
|
|
Media position
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition.#ctor(System.Single,System.Double,System.Int64)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition"/> class
|
|
</summary>
|
|
<param name="position">position as percentage, between 0.0 and 1.0</param>
|
|
<param name="seekBarPosition">seek bar position</param>
|
|
<param name="length">media length in milliseconds</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition.Position">
|
|
<summary>
|
|
Gets the media position
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition.SeekBarPosition">
|
|
<summary>
|
|
Gets the seek bar position
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition.ElapsedTime">
|
|
<summary>
|
|
Gets the elapsed time
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition.RemainingTime">
|
|
<summary>
|
|
Gets the remaining time
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition.ElapsedTimeText">
|
|
<summary>
|
|
Gets the elapsed time text
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition.RemainingTimeText">
|
|
<summary>
|
|
Gets the remaining time text
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager">
|
|
<summary>
|
|
Seek bar manager
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.PositionChanged">
|
|
<summary>
|
|
Occurs when the media position changes
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.SeekableChanged">
|
|
<summary>
|
|
Occurs when the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.Seekable"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.Seekable">
|
|
<summary>
|
|
Gets a value indicating whether the media is seekable
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.SeekBarMaximum">
|
|
<summary>
|
|
Gets or sets the seek bar highest possible value
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.Position">
|
|
<summary>
|
|
Gets elapsed and remaining time
|
|
</summary>
|
|
<returns>a <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.MediaPosition"/> instance containing the position, elapsed and remaining time</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.SetPosition(System.Single)">
|
|
<summary>
|
|
Sets media position as percentage, between 0.0 and 1.0
|
|
</summary>
|
|
<param name="position"></param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.SetSeekBarPosition(System.Double)">
|
|
<summary>
|
|
Sets the seek bar position
|
|
</summary>
|
|
<param name="position">seek bar position</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.SeekBarManager.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.StateManager">
|
|
<summary>
|
|
State manager
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> properties
|
|
need to be set in order to work</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.StateManager.ErrorOccured">
|
|
<summary>
|
|
Occurs when an error is encountered
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.StateManager.ErrorCleared">
|
|
<summary>
|
|
Occurs when the error message should be cleared
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.StateManager.PlayPauseAvailableChanged">
|
|
<summary>
|
|
Occurs when the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.StateManager.PlayPauseAvailable"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.StateManager.Playing">
|
|
<summary>
|
|
Occurs when the media player started playing a media
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.StateManager.Paused">
|
|
<summary>
|
|
Occurs when the media player paused playback
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.StateManager.Stopped">
|
|
<summary>
|
|
Occurs when the media player paused playback
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.StateManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.StateManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.StateManager.MediaResourceLocator">
|
|
<summary>
|
|
Gets the media resource locator
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.StateManager.IsPlaying">
|
|
<summary>
|
|
Gets a value indicating whether the playback is playing
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.StateManager.IsPlayingOrPaused">
|
|
<summary>
|
|
Gets a value indicating whether the playback is playing or is paused
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.StateManager.PlayPauseAvailable">
|
|
<summary>
|
|
Gets a value indicating whether the play/pause button should be shown
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.StateManager.TogglePause">
|
|
<summary>
|
|
Toggles pause
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.StateManager.Stop">
|
|
<summary>
|
|
Stops the playback
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.StateManager.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.StateManager.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.SubtitlesTracksManager">
|
|
<summary>
|
|
Subtitles tracks manager
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.SubtitlesTracksManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initialized a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.SubtitlesTracksManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.SubtitlesTracksManager.CurrentTrackId">
|
|
<summary>
|
|
Gets or sets the current track identifier
|
|
</summary>
|
|
<remarks>returns -1 if no active input</remarks>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.SubtitlesTracksManager.Tracks">
|
|
<summary>
|
|
Gets the tracks descriptions
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.TimeSpanExtensions">
|
|
<summary>
|
|
Extensions methods for <see cref="T:System.TimeSpan"/>
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.TimeSpanExtensions.ToShortString(System.TimeSpan)">
|
|
<summary>
|
|
Converts the value of the current <see cref="T:System.TimeSpan"/> object to its equivalent short string representation
|
|
</summary>
|
|
<param name="span">time interval</param>
|
|
<returns>the short string representation of the current <see cref="T:System.TimeSpan"/> value</returns>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.TracksManager">
|
|
<summary>
|
|
Tracks manager base class
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.TracksCleared">
|
|
<summary>
|
|
Occurs when tracks should be reinitialized
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.TrackSelected">
|
|
<summary>
|
|
Occurs when a track is selected
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.TrackAdded">
|
|
<summary>
|
|
Occurs when a track is added
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.TrackDeleted">
|
|
<summary>
|
|
Occurs when a track is deleted
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher,LibVLCSharp.Shared.TrackType)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.TracksManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
<param name="trackType">track type</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.Tracks">
|
|
<summary>
|
|
Gets the tracks descriptions
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.CurrentTrackId">
|
|
<summary>
|
|
Gets the current track identifier
|
|
</summary>
|
|
<remarks>returns -1 if no active input</remarks>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.GetCurrentTrackId(System.Nullable{System.Int32})">
|
|
<summary>
|
|
Gets the current track identifier
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.SetCurrentTrackId(System.Action{LibVLCSharp.Shared.MediaPlayer})">
|
|
<summary>
|
|
Sets the current track identifier
|
|
</summary>
|
|
<param name="set">setter</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.GetTrackDescription(System.Int32)">
|
|
<summary>
|
|
Gets the track description
|
|
</summary>
|
|
<param name="trackId">track identifier</param>
|
|
<returns>the track description</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.TracksManager.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.VideoTracksManager">
|
|
<summary>
|
|
Video tracks manager
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.VideoTracksManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initialized a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.VideoTracksManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.VideoTracksManager.CurrentTrackId">
|
|
<summary>
|
|
Gets or sets the current track identifier
|
|
</summary>
|
|
<remarks>returns -1 if no active input</remarks>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.VideoTracksManager.Tracks">
|
|
<summary>
|
|
Gets the tracks descriptions
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager">
|
|
<summary>
|
|
Volume manager
|
|
</summary>
|
|
<remarks>the <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.MediaPlayerElementManagerBase.MediaPlayer"/> property needs to be set in order to work</remarks>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.EnabledChanged">
|
|
<summary>
|
|
Occurs when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.Enabled"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.MuteChanged">
|
|
<summary>
|
|
Occurs when <see cref="P:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.Mute"/> property value changes
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.#ctor(LibVLCSharp.Shared.MediaPlayerElement.IDispatcher)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager"/> class
|
|
</summary>
|
|
<param name="dispatcher">dispatcher</param>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.Enabled">
|
|
<summary>
|
|
Gets a value indicating whether the volume can be updated
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.Mute">
|
|
<summary>
|
|
Gets or sets the mute state
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.Volume">
|
|
<summary>
|
|
Gets or sets the volume
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.SubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Subscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.MediaPlayerElement.VolumeManager.UnsubscribeEvents(LibVLCSharp.Shared.MediaPlayer)">
|
|
<summary>
|
|
Unsubscribe media player events
|
|
</summary>
|
|
<param name="mediaPlayer">media player</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.RendererDiscoverer">
|
|
<summary>
|
|
The renderer discoverer can be used to find and use a Chromecast or other distant renderers.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.RendererDiscoverer.#ctor(LibVLCSharp.Shared.LibVLC,System.String)">
|
|
<summary>
|
|
Create a new renderer discoverer with a LibVLC and protocol name depending on host platform
|
|
</summary>
|
|
<param name="libVLC">libvlc instance this will be connected to</param>
|
|
<param name="name">
|
|
The service discovery protocol name depending on platform. Use <see cref="P:LibVLCSharp.Shared.LibVLC.RendererList"/> to find the one for your platform,
|
|
or let libvlcsharp find it for you
|
|
</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.RendererDiscoverer.Start">
|
|
<summary>
|
|
Start the renderer discovery
|
|
</summary>
|
|
<returns>true if start successful</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.RendererDiscoverer.Stop">
|
|
<summary>
|
|
Stop the renderer discovery
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.RendererDiscoverer.ItemAdded">
|
|
<summary>
|
|
Raised when a renderer item has been found
|
|
</summary>
|
|
</member>
|
|
<member name="E:LibVLCSharp.Shared.RendererDiscoverer.ItemDeleted">
|
|
<summary>
|
|
Raised when a renderer item has disappeared
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.RendererItem">
|
|
<summary>
|
|
A renderer item represents a device that libvlc can use to render media.
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererItem.Name">
|
|
<summary>
|
|
Name of the renderer item
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererItem.Type">
|
|
<summary>
|
|
Type of the renderer item
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererItem.IconUri">
|
|
<summary>
|
|
IconUri of the renderer item
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererItem.CanRenderVideo">
|
|
<summary>
|
|
true if the renderer item can render video
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererItem.CanRenderAudio">
|
|
<summary>
|
|
true if the renderer item can render audio
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.StreamMediaInput">
|
|
<summary>
|
|
A <see cref="T:LibVLCSharp.Shared.MediaInput"/> implementation that reads from a .NET stream
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.StreamMediaInput.#ctor(System.IO.Stream)">
|
|
<summary>
|
|
Initializes a new instance of <see cref="T:LibVLCSharp.Shared.StreamMediaInput"/>, which reads from the given .NET stream.
|
|
</summary>
|
|
<remarks>You are still responsible to dispose the stream you give as input.</remarks>
|
|
<param name="stream">The stream to be read from.</param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.StreamMediaInput.Open(System.UInt64@)">
|
|
<summary>
|
|
LibVLC calls this method when it wants to open the media
|
|
</summary>
|
|
<param name="size">This value must be filled with the length of the media (or ulong.MaxValue if unknown)</param>
|
|
<returns><c>true</c> if the stream opened successfully</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.StreamMediaInput.Read(System.IntPtr,System.UInt32)">
|
|
<summary>
|
|
LibVLC calls this method when it wants to read the media
|
|
</summary>
|
|
<param name="buf">The buffer where read data must be written</param>
|
|
<param name="len">The buffer length</param>
|
|
<returns>strictly positive number of bytes read, 0 on end-of-stream, or -1 on non-recoverable error</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.StreamMediaInput.Seek(System.UInt64)">
|
|
<summary>
|
|
LibVLC calls this method when it wants to seek to a specific position in the media
|
|
</summary>
|
|
<param name="offset">The offset, in bytes, since the beginning of the stream</param>
|
|
<returns><c>true</c> if the seek succeeded, false otherwise</returns>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.StreamMediaInput.Close">
|
|
<summary>
|
|
LibVLC calls this method when it wants to close the media.
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Structures.AudioOutputDescription">
|
|
<summary>
|
|
Description for audio output.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Structures.AudioOutputDescription.#ctor(System.String,System.String)">
|
|
<summary>
|
|
AudioOutputDescription default constructor
|
|
</summary>
|
|
<param name="name">Audio output name</param>
|
|
<param name="description">Audio output description</param>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Structures.AudioOutputDescription.Name">
|
|
<summary>
|
|
Audio output name
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Structures.AudioOutputDescription.Description">
|
|
<summary>
|
|
Audio output description
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Structures.AudioOutputDevice">
|
|
<summary>
|
|
Description for audio output device
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Structures.AudioOutputDevice.#ctor(System.String,System.String)">
|
|
<summary>
|
|
AudioOutputDevice default constructor
|
|
</summary>
|
|
<param name="deviceIdentifier">Device identifier string</param>
|
|
<param name="description">User-friendly device description</param>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Structures.AudioOutputDevice.DeviceIdentifier">
|
|
<summary>
|
|
Device identifier string.
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Structures.AudioOutputDevice.Description">
|
|
<summary>
|
|
User-friendly device description.
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Structures.ChapterDescription">
|
|
<summary>
|
|
<para>Description for chapters.</para>
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Structures.ChapterDescription.TimeOffset">
|
|
<summary>
|
|
Time-offset of the chapter in milliseconds
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Structures.ChapterDescription.Duration">
|
|
<summary>
|
|
Duration of the chapter in milliseconds
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Structures.ChapterDescription.Name">
|
|
<summary>
|
|
Chapter name
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Structures.ChapterDescription.#ctor(System.Int64,System.Int64,System.String)">
|
|
<summary>
|
|
TrackDescription constructor
|
|
</summary>
|
|
<param name="timeOffset">Chapter time-offset</param>
|
|
<param name="duration">Chapter duration</param>
|
|
<param name="name">Chapter name</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Structures.ModuleDescription">
|
|
<summary>
|
|
Description of a module.
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Structures.ModuleDescription.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
Default constructor for ModuleDescription
|
|
</summary>
|
|
<param name="name">Module name</param>
|
|
<param name="shortName">Module short name</param>
|
|
<param name="longName">Module long name</param>
|
|
<param name="help">Module help</param>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Structures.ModuleDescription.Name">
|
|
<summary>
|
|
Module name
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Structures.ModuleDescription.ShortName">
|
|
<summary>
|
|
Module short name
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Structures.ModuleDescription.LongName">
|
|
<summary>
|
|
Module long name
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.Structures.ModuleDescription.Help">
|
|
<summary>
|
|
Module help
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.Structures.TrackDescription">
|
|
<summary>
|
|
<para>Description for video, audio tracks and subtitles. It contains</para>
|
|
<para>id, name (description string)</para>
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Structures.TrackDescription.Id">
|
|
<summary>
|
|
Track description Id
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.Structures.TrackDescription.Name">
|
|
<summary>
|
|
Track description
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.Structures.TrackDescription.#ctor(System.Int32,System.String)">
|
|
<summary>
|
|
TrackDescription constructor
|
|
</summary>
|
|
<param name="id">Track description Id</param>
|
|
<param name="name">Track description</param>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaDiscovererDescription">
|
|
<summary>
|
|
Description of a media discoverer
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaDiscovererDescription.Name">
|
|
<summary>
|
|
Media discoverer description name
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaDiscovererDescription.LongName">
|
|
<summary>
|
|
Media discoverer description long name
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.MediaDiscovererDescription.Category">
|
|
<summary>
|
|
Media discoverer category
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaSlave">
|
|
<summary>A slave of a libvlc_media_t</summary>
|
|
<remarks>libvlc_media_slaves_get</remarks>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaSlave.Uri">
|
|
<summary>
|
|
Media slave URI
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaSlave.Type">
|
|
<summary>
|
|
Media slave type
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaSlave.Priority">
|
|
<summary>
|
|
Media slave priority
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaStats">
|
|
<summary>
|
|
Statistics of a Media
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.ReadBytes">
|
|
<summary>
|
|
The number of bytes read
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.InputBitrate">
|
|
<summary>
|
|
The input bitrate
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.DemuxReadBytes">
|
|
<summary>
|
|
The number of bytes read by the demux
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.DemuxBitrate">
|
|
<summary>
|
|
The demux bitrate
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.DemuxCorrupted">
|
|
<summary>
|
|
The number of frame discarded
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.DemuxDiscontinuity">
|
|
<summary>
|
|
The number of frame dropped
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.DecodedVideo">
|
|
<summary>
|
|
The number of decoded video blocks
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.DecodedAudio">
|
|
<summary>
|
|
The number of decoded audio blocks
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.DisplayedPictures">
|
|
<summary>
|
|
The number of frames displayed
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.LostPictures">
|
|
<summary>
|
|
The number of frames lost
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.PlayedAudioBuffers">
|
|
<summary>
|
|
The number of buffers played
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.LostAudioBuffers">
|
|
<summary>
|
|
The number of buffers lost
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.SentPackets">
|
|
<summary>
|
|
The number of packets sent
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.SentBytes">
|
|
<summary>
|
|
The number of bytes sent
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaStats.SendBitrate">
|
|
<summary>
|
|
The bitrate used to send
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.AudioTrack">
|
|
<summary>
|
|
Audio track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.AudioTrack.Channels">
|
|
<summary>
|
|
Audio track channels
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.AudioTrack.Rate">
|
|
<summary>
|
|
Audio track rate
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VideoTrack">
|
|
<summary>
|
|
Video track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.Height">
|
|
<summary>
|
|
Video height
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.Width">
|
|
<summary>
|
|
Video Width
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.SarNum">
|
|
<summary>
|
|
Video SarNum
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.SarDen">
|
|
<summary>
|
|
Video SarDen
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.FrameRateNum">
|
|
<summary>
|
|
Video frame rate num
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.FrameRateDen">
|
|
<summary>
|
|
Video frame rate den
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.Orientation">
|
|
<summary>
|
|
Video orientation
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.Projection">
|
|
<summary>
|
|
Video projection
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoTrack.Pose">
|
|
<summary>
|
|
Video viewpoint
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.SubtitleTrack">
|
|
<summary>
|
|
Subtitle track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.SubtitleTrack.Encoding">
|
|
<summary>
|
|
Subtitle encoding
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaTrack">
|
|
<summary>
|
|
Media track information
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.Codec">
|
|
<summary>
|
|
Media track codec
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.OriginalFourcc">
|
|
<summary>
|
|
Media track original fourcc
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.Id">
|
|
<summary>
|
|
Media track id
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.TrackType">
|
|
<summary>
|
|
Media track type
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.Profile">
|
|
<summary>
|
|
Media track profile
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.Level">
|
|
<summary>
|
|
Media track level
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.Data">
|
|
<summary>
|
|
Media track data
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.Bitrate">
|
|
<summary>
|
|
Media track bitrate
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.Language">
|
|
<summary>
|
|
Media track language
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrack.Description">
|
|
<summary>
|
|
Media track description
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.MediaTrackData">
|
|
<summary>
|
|
Media track data struct, containing info about audio, video and subtitles track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrackData.Audio">
|
|
<summary>
|
|
Audio track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrackData.Video">
|
|
<summary>
|
|
Video track
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.MediaTrackData.Subtitle">
|
|
<summary>
|
|
Subtitle track
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.RendererDescription">
|
|
<summary>
|
|
Renderer description
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererDescription.Name">
|
|
<summary>
|
|
Renderer Name
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Shared.RendererDescription.LongName">
|
|
<summary>
|
|
Renderer long name
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VideoViewpoint">
|
|
<summary>Viewpoint for video outputs</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoViewpoint.Yaw">
|
|
<summary>
|
|
view point yaw in degrees ]-180;180]
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoViewpoint.Pitch">
|
|
<summary>
|
|
view point pitch in degrees ]-90;90]
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoViewpoint.Roll">
|
|
<summary>
|
|
view point roll in degrees ]-180;180]
|
|
</summary>
|
|
</member>
|
|
<member name="F:LibVLCSharp.Shared.VideoViewpoint.Fov">
|
|
<summary>
|
|
field of view in degrees ]0;180[ (default 80.)
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Shared.VLCException">
|
|
<summary>
|
|
This exception is thrown when a problem with VLC occured
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.VLCException.#ctor(System.String)">
|
|
<summary>
|
|
VLC Exception constructor
|
|
</summary>
|
|
<param name="message"></param>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Shared.VLCException.#ctor(System.String,System.Exception)">
|
|
<summary>
|
|
Creates a <see cref="T:LibVLCSharp.Shared.VLCException" /> with a message and an inner exeption
|
|
</summary>
|
|
</member>
|
|
<member name="T:LibVLCSharp.Platforms.Mac.VideoView">
|
|
<summary>
|
|
VideoView implementation for the Apple platform
|
|
</summary>
|
|
</member>
|
|
<member name="P:LibVLCSharp.Platforms.Mac.VideoView.MediaPlayer">
|
|
<summary>
|
|
The MediaPlayer object attached to this VideoView. Use this to manage playback and more
|
|
</summary>
|
|
</member>
|
|
<member name="M:LibVLCSharp.Platforms.Mac.VideoView.Dispose(System.Boolean)">
|
|
<summary>
|
|
Detach the mediaplayer from the view and dispose the view
|
|
</summary>
|
|
<param name="disposing"></param>
|
|
</member>
|
|
<member name="T:FontAwesome.FontAwesomeIcons">
|
|
<summary>
|
|
The unicode values for all FontAwesome icons.
|
|
<para/>
|
|
See https://fontawesome.com/cheatsheet
|
|
<para/>
|
|
This code was automatically generated by FA2CS (https://github.com/matthewrdev/fa2cs).
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FiveHundredPX">
|
|
<summary>
|
|
fa-500px unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/500px
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Abacus">
|
|
<summary>
|
|
fa-abacus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/abacus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AccessibleIcon">
|
|
<summary>
|
|
fa-accessible-icon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/accessible-icon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Accusoft">
|
|
<summary>
|
|
fa-accusoft unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/accusoft
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Acorn">
|
|
<summary>
|
|
fa-acorn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/acorn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AcquisitionsIncorporated">
|
|
<summary>
|
|
fa-acquisitions-incorporated unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/acquisitions-incorporated
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ad">
|
|
<summary>
|
|
fa-ad unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ad
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AddressBook">
|
|
<summary>
|
|
fa-address-book unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/address-book
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AddressCard">
|
|
<summary>
|
|
fa-address-card unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/address-card
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Adjust">
|
|
<summary>
|
|
fa-adjust unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/adjust
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Adn">
|
|
<summary>
|
|
fa-adn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/adn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Adversal">
|
|
<summary>
|
|
fa-adversal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/adversal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Affiliatetheme">
|
|
<summary>
|
|
fa-affiliatetheme unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/affiliatetheme
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AirFreshener">
|
|
<summary>
|
|
fa-air-freshener unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/air-freshener
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AlarmClock">
|
|
<summary>
|
|
fa-alarm-clock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/alarm-clock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Algolia">
|
|
<summary>
|
|
fa-algolia unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/algolia
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Alicorn">
|
|
<summary>
|
|
fa-alicorn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/alicorn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AlignCenter">
|
|
<summary>
|
|
fa-align-center unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/align-center
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AlignJustify">
|
|
<summary>
|
|
fa-align-justify unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/align-justify
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AlignLeft">
|
|
<summary>
|
|
fa-align-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/align-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AlignRight">
|
|
<summary>
|
|
fa-align-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/align-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Alipay">
|
|
<summary>
|
|
fa-alipay unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/alipay
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Allergies">
|
|
<summary>
|
|
fa-allergies unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/allergies
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Amazon">
|
|
<summary>
|
|
fa-amazon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/amazon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AmazonPay">
|
|
<summary>
|
|
fa-amazon-pay unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/amazon-pay
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ambulance">
|
|
<summary>
|
|
fa-ambulance unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ambulance
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AmericanSignLanguageInterpreting">
|
|
<summary>
|
|
fa-american-sign-language-interpreting unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/american-sign-language-interpreting
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Amilia">
|
|
<summary>
|
|
fa-amilia unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/amilia
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Analytics">
|
|
<summary>
|
|
fa-analytics unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/analytics
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Anchor">
|
|
<summary>
|
|
fa-anchor unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/anchor
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Android">
|
|
<summary>
|
|
fa-android unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/android
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Angellist">
|
|
<summary>
|
|
fa-angellist unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/angellist
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AngleDoubleDown">
|
|
<summary>
|
|
fa-angle-double-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angle-double-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AngleDoubleLeft">
|
|
<summary>
|
|
fa-angle-double-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angle-double-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AngleDoubleRight">
|
|
<summary>
|
|
fa-angle-double-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angle-double-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AngleDoubleUp">
|
|
<summary>
|
|
fa-angle-double-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angle-double-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AngleDown">
|
|
<summary>
|
|
fa-angle-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angle-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AngleLeft">
|
|
<summary>
|
|
fa-angle-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angle-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AngleRight">
|
|
<summary>
|
|
fa-angle-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angle-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AngleUp">
|
|
<summary>
|
|
fa-angle-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angle-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Angry">
|
|
<summary>
|
|
fa-angry unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/angry
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Angrycreative">
|
|
<summary>
|
|
fa-angrycreative unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/angrycreative
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Angular">
|
|
<summary>
|
|
fa-angular unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/angular
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ankh">
|
|
<summary>
|
|
fa-ankh unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ankh
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AppStore">
|
|
<summary>
|
|
fa-app-store unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/app-store
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AppStoreIos">
|
|
<summary>
|
|
fa-app-store-ios unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/app-store-ios
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Apper">
|
|
<summary>
|
|
fa-apper unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/apper
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Apple">
|
|
<summary>
|
|
fa-apple unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/apple
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AppleAlt">
|
|
<summary>
|
|
fa-apple-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/apple-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AppleCrate">
|
|
<summary>
|
|
fa-apple-crate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/apple-crate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ApplePay">
|
|
<summary>
|
|
fa-apple-pay unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/apple-pay
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Archive">
|
|
<summary>
|
|
fa-archive unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/archive
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Archway">
|
|
<summary>
|
|
fa-archway unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/archway
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltCircleDown">
|
|
<summary>
|
|
fa-arrow-alt-circle-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-circle-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltCircleLeft">
|
|
<summary>
|
|
fa-arrow-alt-circle-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-circle-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltCircleRight">
|
|
<summary>
|
|
fa-arrow-alt-circle-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-circle-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltCircleUp">
|
|
<summary>
|
|
fa-arrow-alt-circle-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-circle-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltDown">
|
|
<summary>
|
|
fa-arrow-alt-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltFromBottom">
|
|
<summary>
|
|
fa-arrow-alt-from-bottom unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-from-bottom
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltFromLeft">
|
|
<summary>
|
|
fa-arrow-alt-from-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-from-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltFromRight">
|
|
<summary>
|
|
fa-arrow-alt-from-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-from-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltFromTop">
|
|
<summary>
|
|
fa-arrow-alt-from-top unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-from-top
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltLeft">
|
|
<summary>
|
|
fa-arrow-alt-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltRight">
|
|
<summary>
|
|
fa-arrow-alt-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltSquareDown">
|
|
<summary>
|
|
fa-arrow-alt-square-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-square-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltSquareLeft">
|
|
<summary>
|
|
fa-arrow-alt-square-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-square-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltSquareRight">
|
|
<summary>
|
|
fa-arrow-alt-square-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-square-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltSquareUp">
|
|
<summary>
|
|
fa-arrow-alt-square-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-square-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltToBottom">
|
|
<summary>
|
|
fa-arrow-alt-to-bottom unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-to-bottom
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltToLeft">
|
|
<summary>
|
|
fa-arrow-alt-to-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-to-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltToRight">
|
|
<summary>
|
|
fa-arrow-alt-to-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-to-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltToTop">
|
|
<summary>
|
|
fa-arrow-alt-to-top unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-to-top
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowAltUp">
|
|
<summary>
|
|
fa-arrow-alt-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-alt-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowCircleDown">
|
|
<summary>
|
|
fa-arrow-circle-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-circle-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowCircleLeft">
|
|
<summary>
|
|
fa-arrow-circle-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-circle-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowCircleRight">
|
|
<summary>
|
|
fa-arrow-circle-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-circle-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowCircleUp">
|
|
<summary>
|
|
fa-arrow-circle-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-circle-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowDown">
|
|
<summary>
|
|
fa-arrow-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowFromBottom">
|
|
<summary>
|
|
fa-arrow-from-bottom unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-from-bottom
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowFromLeft">
|
|
<summary>
|
|
fa-arrow-from-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-from-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowFromRight">
|
|
<summary>
|
|
fa-arrow-from-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-from-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowFromTop">
|
|
<summary>
|
|
fa-arrow-from-top unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-from-top
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowLeft">
|
|
<summary>
|
|
fa-arrow-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowRight">
|
|
<summary>
|
|
fa-arrow-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowSquareDown">
|
|
<summary>
|
|
fa-arrow-square-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-square-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowSquareLeft">
|
|
<summary>
|
|
fa-arrow-square-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-square-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowSquareRight">
|
|
<summary>
|
|
fa-arrow-square-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-square-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowSquareUp">
|
|
<summary>
|
|
fa-arrow-square-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-square-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowToBottom">
|
|
<summary>
|
|
fa-arrow-to-bottom unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-to-bottom
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowToLeft">
|
|
<summary>
|
|
fa-arrow-to-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-to-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowToRight">
|
|
<summary>
|
|
fa-arrow-to-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-to-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowToTop">
|
|
<summary>
|
|
fa-arrow-to-top unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-to-top
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowUp">
|
|
<summary>
|
|
fa-arrow-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrow-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Arrows">
|
|
<summary>
|
|
fa-arrows unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrows
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowsAlt">
|
|
<summary>
|
|
fa-arrows-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrows-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowsAltH">
|
|
<summary>
|
|
fa-arrows-alt-h unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrows-alt-h
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowsAltV">
|
|
<summary>
|
|
fa-arrows-alt-v unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrows-alt-v
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowsH">
|
|
<summary>
|
|
fa-arrows-h unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrows-h
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ArrowsV">
|
|
<summary>
|
|
fa-arrows-v unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/arrows-v
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AssistiveListeningSystems">
|
|
<summary>
|
|
fa-assistive-listening-systems unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/assistive-listening-systems
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Asterisk">
|
|
<summary>
|
|
fa-asterisk unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/asterisk
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Asymmetrik">
|
|
<summary>
|
|
fa-asymmetrik unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/asymmetrik
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.At">
|
|
<summary>
|
|
fa-at unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/at
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Atlas">
|
|
<summary>
|
|
fa-atlas unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/atlas
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Atom">
|
|
<summary>
|
|
fa-atom unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/atom
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AtomAlt">
|
|
<summary>
|
|
fa-atom-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/atom-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Audible">
|
|
<summary>
|
|
fa-audible unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/audible
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AudioDescription">
|
|
<summary>
|
|
fa-audio-description unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/audio-description
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Autoprefixer">
|
|
<summary>
|
|
fa-autoprefixer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/autoprefixer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Avianex">
|
|
<summary>
|
|
fa-avianex unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/avianex
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Aviato">
|
|
<summary>
|
|
fa-aviato unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/aviato
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Award">
|
|
<summary>
|
|
fa-award unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/award
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Aws">
|
|
<summary>
|
|
fa-aws unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/aws
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Axe">
|
|
<summary>
|
|
fa-axe unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/axe
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.AxeBattle">
|
|
<summary>
|
|
fa-axe-battle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/axe-battle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Backpack">
|
|
<summary>
|
|
fa-backpack unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/backpack
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Backspace">
|
|
<summary>
|
|
fa-backspace unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/backspace
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Backward">
|
|
<summary>
|
|
fa-backward unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/backward
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Badge">
|
|
<summary>
|
|
fa-badge unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/badge
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BadgeCheck">
|
|
<summary>
|
|
fa-badge-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/badge-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BadgeDollar">
|
|
<summary>
|
|
fa-badge-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/badge-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BadgePercent">
|
|
<summary>
|
|
fa-badge-percent unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/badge-percent
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BadgerHoney">
|
|
<summary>
|
|
fa-badger-honey unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/badger-honey
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BalanceScale">
|
|
<summary>
|
|
fa-balance-scale unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/balance-scale
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BalanceScaleLeft">
|
|
<summary>
|
|
fa-balance-scale-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/balance-scale-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BalanceScaleRight">
|
|
<summary>
|
|
fa-balance-scale-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/balance-scale-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ballot">
|
|
<summary>
|
|
fa-ballot unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ballot
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BallotCheck">
|
|
<summary>
|
|
fa-ballot-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ballot-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ban">
|
|
<summary>
|
|
fa-ban unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ban
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BandAid">
|
|
<summary>
|
|
fa-band-aid unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/band-aid
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bandcamp">
|
|
<summary>
|
|
fa-bandcamp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/bandcamp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Barcode">
|
|
<summary>
|
|
fa-barcode unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/barcode
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BarcodeAlt">
|
|
<summary>
|
|
fa-barcode-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/barcode-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BarcodeRead">
|
|
<summary>
|
|
fa-barcode-read unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/barcode-read
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BarcodeScan">
|
|
<summary>
|
|
fa-barcode-scan unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/barcode-scan
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bars">
|
|
<summary>
|
|
fa-bars unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bars
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Baseball">
|
|
<summary>
|
|
fa-baseball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/baseball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BaseballBall">
|
|
<summary>
|
|
fa-baseball-ball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/baseball-ball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BasketballBall">
|
|
<summary>
|
|
fa-basketball-ball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/basketball-ball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BasketballHoop">
|
|
<summary>
|
|
fa-basketball-hoop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/basketball-hoop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bat">
|
|
<summary>
|
|
fa-bat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bath">
|
|
<summary>
|
|
fa-bath unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bath
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BatteryBolt">
|
|
<summary>
|
|
fa-battery-bolt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/battery-bolt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BatteryEmpty">
|
|
<summary>
|
|
fa-battery-empty unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/battery-empty
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BatteryFull">
|
|
<summary>
|
|
fa-battery-full unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/battery-full
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BatteryHalf">
|
|
<summary>
|
|
fa-battery-half unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/battery-half
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BatteryQuarter">
|
|
<summary>
|
|
fa-battery-quarter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/battery-quarter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BatterySlash">
|
|
<summary>
|
|
fa-battery-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/battery-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BatteryThreeQuarters">
|
|
<summary>
|
|
fa-battery-three-quarters unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/battery-three-quarters
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bed">
|
|
<summary>
|
|
fa-bed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Beer">
|
|
<summary>
|
|
fa-beer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/beer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Behance">
|
|
<summary>
|
|
fa-behance unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/behance
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BehanceSquare">
|
|
<summary>
|
|
fa-behance-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/behance-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bell">
|
|
<summary>
|
|
fa-bell unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bell
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BellSchool">
|
|
<summary>
|
|
fa-bell-school unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bell-school
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BellSchoolSlash">
|
|
<summary>
|
|
fa-bell-school-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bell-school-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BellSlash">
|
|
<summary>
|
|
fa-bell-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bell-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BezierCurve">
|
|
<summary>
|
|
fa-bezier-curve unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bezier-curve
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bible">
|
|
<summary>
|
|
fa-bible unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bible
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bicycle">
|
|
<summary>
|
|
fa-bicycle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bicycle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bimobject">
|
|
<summary>
|
|
fa-bimobject unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/bimobject
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Binoculars">
|
|
<summary>
|
|
fa-binoculars unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/binoculars
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BirthdayCake">
|
|
<summary>
|
|
fa-birthday-cake unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/birthday-cake
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bitbucket">
|
|
<summary>
|
|
fa-bitbucket unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/bitbucket
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bitcoin">
|
|
<summary>
|
|
fa-bitcoin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/bitcoin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bity">
|
|
<summary>
|
|
fa-bity unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/bity
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BlackTie">
|
|
<summary>
|
|
fa-black-tie unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/black-tie
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Blackberry">
|
|
<summary>
|
|
fa-blackberry unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/blackberry
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Blanket">
|
|
<summary>
|
|
fa-blanket unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/blanket
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Blender">
|
|
<summary>
|
|
fa-blender unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/blender
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BlenderPhone">
|
|
<summary>
|
|
fa-blender-phone unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/blender-phone
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Blind">
|
|
<summary>
|
|
fa-blind unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/blind
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Blogger">
|
|
<summary>
|
|
fa-blogger unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/blogger
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BloggerB">
|
|
<summary>
|
|
fa-blogger-b unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/blogger-b
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bluetooth">
|
|
<summary>
|
|
fa-bluetooth unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/bluetooth
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BluetoothB">
|
|
<summary>
|
|
fa-bluetooth-b unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/bluetooth-b
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bold">
|
|
<summary>
|
|
fa-bold unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bold
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bolt">
|
|
<summary>
|
|
fa-bolt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bolt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bomb">
|
|
<summary>
|
|
fa-bomb unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bomb
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bone">
|
|
<summary>
|
|
fa-bone unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bone
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoneBreak">
|
|
<summary>
|
|
fa-bone-break unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bone-break
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bong">
|
|
<summary>
|
|
fa-bong unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bong
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Book">
|
|
<summary>
|
|
fa-book unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/book
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BookAlt">
|
|
<summary>
|
|
fa-book-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/book-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BookDead">
|
|
<summary>
|
|
fa-book-dead unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/book-dead
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BookHeart">
|
|
<summary>
|
|
fa-book-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/book-heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BookOpen">
|
|
<summary>
|
|
fa-book-open unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/book-open
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BookReader">
|
|
<summary>
|
|
fa-book-reader unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/book-reader
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BookSpells">
|
|
<summary>
|
|
fa-book-spells unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/book-spells
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bookmark">
|
|
<summary>
|
|
fa-bookmark unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bookmark
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Books">
|
|
<summary>
|
|
fa-books unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/books
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoothCurtain">
|
|
<summary>
|
|
fa-booth-curtain unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/booth-curtain
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BowArrow">
|
|
<summary>
|
|
fa-bow-arrow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bow-arrow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BowlingBall">
|
|
<summary>
|
|
fa-bowling-ball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bowling-ball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BowlingPins">
|
|
<summary>
|
|
fa-bowling-pins unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bowling-pins
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Box">
|
|
<summary>
|
|
fa-box unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/box
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxAlt">
|
|
<summary>
|
|
fa-box-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxBallot">
|
|
<summary>
|
|
fa-box-ballot unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-ballot
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxCheck">
|
|
<summary>
|
|
fa-box-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxFragile">
|
|
<summary>
|
|
fa-box-fragile unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-fragile
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxFull">
|
|
<summary>
|
|
fa-box-full unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-full
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxHeart">
|
|
<summary>
|
|
fa-box-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxOpen">
|
|
<summary>
|
|
fa-box-open unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-open
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxUp">
|
|
<summary>
|
|
fa-box-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxUsd">
|
|
<summary>
|
|
fa-box-usd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/box-usd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Boxes">
|
|
<summary>
|
|
fa-boxes unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/boxes
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxesAlt">
|
|
<summary>
|
|
fa-boxes-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/boxes-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BoxingGlove">
|
|
<summary>
|
|
fa-boxing-glove unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/boxing-glove
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Braille">
|
|
<summary>
|
|
fa-braille unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/braille
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Brain">
|
|
<summary>
|
|
fa-brain unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/brain
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Briefcase">
|
|
<summary>
|
|
fa-briefcase unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/briefcase
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BriefcaseMedical">
|
|
<summary>
|
|
fa-briefcase-medical unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/briefcase-medical
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BroadcastTower">
|
|
<summary>
|
|
fa-broadcast-tower unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/broadcast-tower
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Broom">
|
|
<summary>
|
|
fa-broom unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/broom
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Browser">
|
|
<summary>
|
|
fa-browser unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/browser
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Brush">
|
|
<summary>
|
|
fa-brush unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/brush
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Btc">
|
|
<summary>
|
|
fa-btc unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/btc
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bug">
|
|
<summary>
|
|
fa-bug unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bug
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Building">
|
|
<summary>
|
|
fa-building unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/building
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bullhorn">
|
|
<summary>
|
|
fa-bullhorn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bullhorn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bullseye">
|
|
<summary>
|
|
fa-bullseye unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bullseye
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BullseyeArrow">
|
|
<summary>
|
|
fa-bullseye-arrow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bullseye-arrow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BullseyePointer">
|
|
<summary>
|
|
fa-bullseye-pointer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bullseye-pointer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Burn">
|
|
<summary>
|
|
fa-burn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/burn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Buromobelexperte">
|
|
<summary>
|
|
fa-buromobelexperte unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/buromobelexperte
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Bus">
|
|
<summary>
|
|
fa-bus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BusAlt">
|
|
<summary>
|
|
fa-bus-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/bus-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BusSchool">
|
|
<summary>
|
|
fa-bus-school unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/bus-school
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.BusinessTime">
|
|
<summary>
|
|
fa-business-time unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/business-time
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Buysellads">
|
|
<summary>
|
|
fa-buysellads unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/buysellads
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CabinetFiling">
|
|
<summary>
|
|
fa-cabinet-filing unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cabinet-filing
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Calculator">
|
|
<summary>
|
|
fa-calculator unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/calculator
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalculatorAlt">
|
|
<summary>
|
|
fa-calculator-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/calculator-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Calendar">
|
|
<summary>
|
|
fa-calendar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalendarAlt">
|
|
<summary>
|
|
fa-calendar-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalendarCheck">
|
|
<summary>
|
|
fa-calendar-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalendarEdit">
|
|
<summary>
|
|
fa-calendar-edit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar-edit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalendarExclamation">
|
|
<summary>
|
|
fa-calendar-exclamation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar-exclamation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalendarMinus">
|
|
<summary>
|
|
fa-calendar-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalendarPlus">
|
|
<summary>
|
|
fa-calendar-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalendarStar">
|
|
<summary>
|
|
fa-calendar-star unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar-star
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CalendarTimes">
|
|
<summary>
|
|
fa-calendar-times unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/calendar-times
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Camera">
|
|
<summary>
|
|
fa-camera unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/camera
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CameraAlt">
|
|
<summary>
|
|
fa-camera-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/camera-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CameraRetro">
|
|
<summary>
|
|
fa-camera-retro unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/camera-retro
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Campfire">
|
|
<summary>
|
|
fa-campfire unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/campfire
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Campground">
|
|
<summary>
|
|
fa-campground unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/campground
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CandleHolder">
|
|
<summary>
|
|
fa-candle-holder unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/candle-holder
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CandyCorn">
|
|
<summary>
|
|
fa-candy-corn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/candy-corn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cannabis">
|
|
<summary>
|
|
fa-cannabis unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cannabis
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Capsules">
|
|
<summary>
|
|
fa-capsules unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/capsules
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Car">
|
|
<summary>
|
|
fa-car unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/car
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarAlt">
|
|
<summary>
|
|
fa-car-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarBattery">
|
|
<summary>
|
|
fa-car-battery unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-battery
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarBump">
|
|
<summary>
|
|
fa-car-bump unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-bump
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarCrash">
|
|
<summary>
|
|
fa-car-crash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-crash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarGarage">
|
|
<summary>
|
|
fa-car-garage unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-garage
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarMechanic">
|
|
<summary>
|
|
fa-car-mechanic unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-mechanic
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarSide">
|
|
<summary>
|
|
fa-car-side unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-side
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarTilt">
|
|
<summary>
|
|
fa-car-tilt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-tilt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CarWash">
|
|
<summary>
|
|
fa-car-wash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/car-wash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretCircleDown">
|
|
<summary>
|
|
fa-caret-circle-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-circle-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretCircleLeft">
|
|
<summary>
|
|
fa-caret-circle-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-circle-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretCircleRight">
|
|
<summary>
|
|
fa-caret-circle-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-circle-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretCircleUp">
|
|
<summary>
|
|
fa-caret-circle-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-circle-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretDown">
|
|
<summary>
|
|
fa-caret-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretLeft">
|
|
<summary>
|
|
fa-caret-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretRight">
|
|
<summary>
|
|
fa-caret-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretSquareDown">
|
|
<summary>
|
|
fa-caret-square-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-square-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretSquareLeft">
|
|
<summary>
|
|
fa-caret-square-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-square-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretSquareRight">
|
|
<summary>
|
|
fa-caret-square-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-square-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretSquareUp">
|
|
<summary>
|
|
fa-caret-square-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-square-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CaretUp">
|
|
<summary>
|
|
fa-caret-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/caret-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CartArrowDown">
|
|
<summary>
|
|
fa-cart-arrow-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cart-arrow-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CartPlus">
|
|
<summary>
|
|
fa-cart-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cart-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cat">
|
|
<summary>
|
|
fa-cat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cauldron">
|
|
<summary>
|
|
fa-cauldron unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cauldron
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcAmazonPay">
|
|
<summary>
|
|
fa-cc-amazon-pay unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-amazon-pay
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcAmex">
|
|
<summary>
|
|
fa-cc-amex unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-amex
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcApplePay">
|
|
<summary>
|
|
fa-cc-apple-pay unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-apple-pay
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcDinersClub">
|
|
<summary>
|
|
fa-cc-diners-club unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-diners-club
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcDiscover">
|
|
<summary>
|
|
fa-cc-discover unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-discover
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcJcb">
|
|
<summary>
|
|
fa-cc-jcb unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-jcb
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcMastercard">
|
|
<summary>
|
|
fa-cc-mastercard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-mastercard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcPaypal">
|
|
<summary>
|
|
fa-cc-paypal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-paypal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcStripe">
|
|
<summary>
|
|
fa-cc-stripe unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-stripe
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CcVisa">
|
|
<summary>
|
|
fa-cc-visa unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cc-visa
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Centercode">
|
|
<summary>
|
|
fa-centercode unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/centercode
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Certificate">
|
|
<summary>
|
|
fa-certificate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/certificate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Chair">
|
|
<summary>
|
|
fa-chair unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chair
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChairOffice">
|
|
<summary>
|
|
fa-chair-office unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chair-office
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Chalkboard">
|
|
<summary>
|
|
fa-chalkboard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chalkboard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChalkboardTeacher">
|
|
<summary>
|
|
fa-chalkboard-teacher unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chalkboard-teacher
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChargingStation">
|
|
<summary>
|
|
fa-charging-station unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/charging-station
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChartArea">
|
|
<summary>
|
|
fa-chart-area unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chart-area
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChartBar">
|
|
<summary>
|
|
fa-chart-bar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chart-bar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChartLine">
|
|
<summary>
|
|
fa-chart-line unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chart-line
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChartLineDown">
|
|
<summary>
|
|
fa-chart-line-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chart-line-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChartPie">
|
|
<summary>
|
|
fa-chart-pie unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chart-pie
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChartPieAlt">
|
|
<summary>
|
|
fa-chart-pie-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chart-pie-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Check">
|
|
<summary>
|
|
fa-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CheckCircle">
|
|
<summary>
|
|
fa-check-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/check-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CheckDouble">
|
|
<summary>
|
|
fa-check-double unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/check-double
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CheckSquare">
|
|
<summary>
|
|
fa-check-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/check-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Chess">
|
|
<summary>
|
|
fa-chess unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessBishop">
|
|
<summary>
|
|
fa-chess-bishop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-bishop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessBishopAlt">
|
|
<summary>
|
|
fa-chess-bishop-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-bishop-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessBoard">
|
|
<summary>
|
|
fa-chess-board unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-board
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessClock">
|
|
<summary>
|
|
fa-chess-clock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-clock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessClockAlt">
|
|
<summary>
|
|
fa-chess-clock-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-clock-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessKing">
|
|
<summary>
|
|
fa-chess-king unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-king
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessKingAlt">
|
|
<summary>
|
|
fa-chess-king-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-king-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessKnight">
|
|
<summary>
|
|
fa-chess-knight unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-knight
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessKnightAlt">
|
|
<summary>
|
|
fa-chess-knight-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-knight-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessPawn">
|
|
<summary>
|
|
fa-chess-pawn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-pawn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessPawnAlt">
|
|
<summary>
|
|
fa-chess-pawn-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-pawn-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessQueen">
|
|
<summary>
|
|
fa-chess-queen unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-queen
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessQueenAlt">
|
|
<summary>
|
|
fa-chess-queen-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-queen-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessRook">
|
|
<summary>
|
|
fa-chess-rook unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-rook
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChessRookAlt">
|
|
<summary>
|
|
fa-chess-rook-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chess-rook-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronCircleDown">
|
|
<summary>
|
|
fa-chevron-circle-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-circle-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronCircleLeft">
|
|
<summary>
|
|
fa-chevron-circle-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-circle-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronCircleRight">
|
|
<summary>
|
|
fa-chevron-circle-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-circle-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronCircleUp">
|
|
<summary>
|
|
fa-chevron-circle-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-circle-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronDoubleDown">
|
|
<summary>
|
|
fa-chevron-double-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-double-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronDoubleLeft">
|
|
<summary>
|
|
fa-chevron-double-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-double-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronDoubleRight">
|
|
<summary>
|
|
fa-chevron-double-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-double-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronDoubleUp">
|
|
<summary>
|
|
fa-chevron-double-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-double-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronDown">
|
|
<summary>
|
|
fa-chevron-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronLeft">
|
|
<summary>
|
|
fa-chevron-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronRight">
|
|
<summary>
|
|
fa-chevron-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronSquareDown">
|
|
<summary>
|
|
fa-chevron-square-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-square-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronSquareLeft">
|
|
<summary>
|
|
fa-chevron-square-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-square-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronSquareRight">
|
|
<summary>
|
|
fa-chevron-square-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-square-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronSquareUp">
|
|
<summary>
|
|
fa-chevron-square-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-square-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ChevronUp">
|
|
<summary>
|
|
fa-chevron-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/chevron-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Child">
|
|
<summary>
|
|
fa-child unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/child
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Chrome">
|
|
<summary>
|
|
fa-chrome unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/chrome
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Church">
|
|
<summary>
|
|
fa-church unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/church
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Circle">
|
|
<summary>
|
|
fa-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CircleNotch">
|
|
<summary>
|
|
fa-circle-notch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/circle-notch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.City">
|
|
<summary>
|
|
fa-city unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/city
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ClawMarks">
|
|
<summary>
|
|
fa-claw-marks unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/claw-marks
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Clipboard">
|
|
<summary>
|
|
fa-clipboard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/clipboard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ClipboardCheck">
|
|
<summary>
|
|
fa-clipboard-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/clipboard-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ClipboardList">
|
|
<summary>
|
|
fa-clipboard-list unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/clipboard-list
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ClipboardListCheck">
|
|
<summary>
|
|
fa-clipboard-list-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/clipboard-list-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ClipboardPrescription">
|
|
<summary>
|
|
fa-clipboard-prescription unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/clipboard-prescription
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Clock">
|
|
<summary>
|
|
fa-clock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/clock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Clone">
|
|
<summary>
|
|
fa-clone unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/clone
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ClosedCaptioning">
|
|
<summary>
|
|
fa-closed-captioning unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/closed-captioning
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cloud">
|
|
<summary>
|
|
fa-cloud unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudDownload">
|
|
<summary>
|
|
fa-cloud-download unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-download
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudDownloadAlt">
|
|
<summary>
|
|
fa-cloud-download-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-download-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudDrizzle">
|
|
<summary>
|
|
fa-cloud-drizzle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-drizzle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudHail">
|
|
<summary>
|
|
fa-cloud-hail unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-hail
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudHailMixed">
|
|
<summary>
|
|
fa-cloud-hail-mixed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-hail-mixed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudMeatball">
|
|
<summary>
|
|
fa-cloud-meatball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-meatball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudMoon">
|
|
<summary>
|
|
fa-cloud-moon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-moon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudMoonRain">
|
|
<summary>
|
|
fa-cloud-moon-rain unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-moon-rain
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudRain">
|
|
<summary>
|
|
fa-cloud-rain unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-rain
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudRainbow">
|
|
<summary>
|
|
fa-cloud-rainbow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-rainbow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudShowers">
|
|
<summary>
|
|
fa-cloud-showers unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-showers
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudShowersHeavy">
|
|
<summary>
|
|
fa-cloud-showers-heavy unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-showers-heavy
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudSleet">
|
|
<summary>
|
|
fa-cloud-sleet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-sleet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudSnow">
|
|
<summary>
|
|
fa-cloud-snow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-snow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudSun">
|
|
<summary>
|
|
fa-cloud-sun unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-sun
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudSunRain">
|
|
<summary>
|
|
fa-cloud-sun-rain unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-sun-rain
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudUpload">
|
|
<summary>
|
|
fa-cloud-upload unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-upload
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudUploadAlt">
|
|
<summary>
|
|
fa-cloud-upload-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloud-upload-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Clouds">
|
|
<summary>
|
|
fa-clouds unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/clouds
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudsMoon">
|
|
<summary>
|
|
fa-clouds-moon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/clouds-moon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CloudsSun">
|
|
<summary>
|
|
fa-clouds-sun unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/clouds-sun
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cloudscale">
|
|
<summary>
|
|
fa-cloudscale unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloudscale
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cloudsmith">
|
|
<summary>
|
|
fa-cloudsmith unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloudsmith
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cloudversify">
|
|
<summary>
|
|
fa-cloudversify unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cloudversify
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Club">
|
|
<summary>
|
|
fa-club unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/club
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cocktail">
|
|
<summary>
|
|
fa-cocktail unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cocktail
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Code">
|
|
<summary>
|
|
fa-code unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/code
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CodeBranch">
|
|
<summary>
|
|
fa-code-branch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/code-branch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CodeCommit">
|
|
<summary>
|
|
fa-code-commit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/code-commit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CodeMerge">
|
|
<summary>
|
|
fa-code-merge unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/code-merge
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Codepen">
|
|
<summary>
|
|
fa-codepen unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/codepen
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Codiepie">
|
|
<summary>
|
|
fa-codiepie unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/codiepie
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Coffee">
|
|
<summary>
|
|
fa-coffee unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/coffee
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CoffeeTogo">
|
|
<summary>
|
|
fa-coffee-togo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/coffee-togo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Coffin">
|
|
<summary>
|
|
fa-coffin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/coffin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cog">
|
|
<summary>
|
|
fa-cog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cogs">
|
|
<summary>
|
|
fa-cogs unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cogs
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Coins">
|
|
<summary>
|
|
fa-coins unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/coins
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Columns">
|
|
<summary>
|
|
fa-columns unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/columns
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Comment">
|
|
<summary>
|
|
fa-comment unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAlt">
|
|
<summary>
|
|
fa-comment-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltCheck">
|
|
<summary>
|
|
fa-comment-alt-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltDollar">
|
|
<summary>
|
|
fa-comment-alt-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltDots">
|
|
<summary>
|
|
fa-comment-alt-dots unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-dots
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltEdit">
|
|
<summary>
|
|
fa-comment-alt-edit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-edit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltExclamation">
|
|
<summary>
|
|
fa-comment-alt-exclamation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-exclamation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltLines">
|
|
<summary>
|
|
fa-comment-alt-lines unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-lines
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltMinus">
|
|
<summary>
|
|
fa-comment-alt-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltPlus">
|
|
<summary>
|
|
fa-comment-alt-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltSlash">
|
|
<summary>
|
|
fa-comment-alt-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltSmile">
|
|
<summary>
|
|
fa-comment-alt-smile unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-smile
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentAltTimes">
|
|
<summary>
|
|
fa-comment-alt-times unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-alt-times
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentCheck">
|
|
<summary>
|
|
fa-comment-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentDollar">
|
|
<summary>
|
|
fa-comment-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentDots">
|
|
<summary>
|
|
fa-comment-dots unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-dots
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentEdit">
|
|
<summary>
|
|
fa-comment-edit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-edit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentExclamation">
|
|
<summary>
|
|
fa-comment-exclamation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-exclamation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentLines">
|
|
<summary>
|
|
fa-comment-lines unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-lines
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentMinus">
|
|
<summary>
|
|
fa-comment-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentPlus">
|
|
<summary>
|
|
fa-comment-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentSlash">
|
|
<summary>
|
|
fa-comment-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentSmile">
|
|
<summary>
|
|
fa-comment-smile unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-smile
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentTimes">
|
|
<summary>
|
|
fa-comment-times unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comment-times
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Comments">
|
|
<summary>
|
|
fa-comments unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/comments
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentsAlt">
|
|
<summary>
|
|
fa-comments-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comments-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentsAltDollar">
|
|
<summary>
|
|
fa-comments-alt-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/comments-alt-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CommentsDollar">
|
|
<summary>
|
|
fa-comments-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/comments-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CompactDisc">
|
|
<summary>
|
|
fa-compact-disc unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/compact-disc
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Compass">
|
|
<summary>
|
|
fa-compass unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/compass
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CompassSlash">
|
|
<summary>
|
|
fa-compass-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/compass-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Compress">
|
|
<summary>
|
|
fa-compress unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/compress
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CompressAlt">
|
|
<summary>
|
|
fa-compress-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/compress-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CompressWide">
|
|
<summary>
|
|
fa-compress-wide unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/compress-wide
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ConciergeBell">
|
|
<summary>
|
|
fa-concierge-bell unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/concierge-bell
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Connectdevelop">
|
|
<summary>
|
|
fa-connectdevelop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/connectdevelop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ContainerStorage">
|
|
<summary>
|
|
fa-container-storage unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/container-storage
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Contao">
|
|
<summary>
|
|
fa-contao unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/contao
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ConveyorBelt">
|
|
<summary>
|
|
fa-conveyor-belt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/conveyor-belt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ConveyorBeltAlt">
|
|
<summary>
|
|
fa-conveyor-belt-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/conveyor-belt-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cookie">
|
|
<summary>
|
|
fa-cookie unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cookie
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CookieBite">
|
|
<summary>
|
|
fa-cookie-bite unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cookie-bite
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Copy">
|
|
<summary>
|
|
fa-copy unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/copy
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Copyright">
|
|
<summary>
|
|
fa-copyright unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/copyright
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Corn">
|
|
<summary>
|
|
fa-corn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/corn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Couch">
|
|
<summary>
|
|
fa-couch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/couch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cow">
|
|
<summary>
|
|
fa-cow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cpanel">
|
|
<summary>
|
|
fa-cpanel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cpanel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommons">
|
|
<summary>
|
|
fa-creative-commons unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsBy">
|
|
<summary>
|
|
fa-creative-commons-by unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-by
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsNc">
|
|
<summary>
|
|
fa-creative-commons-nc unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-nc
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsNcEu">
|
|
<summary>
|
|
fa-creative-commons-nc-eu unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-nc-eu
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsNcJp">
|
|
<summary>
|
|
fa-creative-commons-nc-jp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-nc-jp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsNd">
|
|
<summary>
|
|
fa-creative-commons-nd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-nd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsPd">
|
|
<summary>
|
|
fa-creative-commons-pd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-pd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsPdAlt">
|
|
<summary>
|
|
fa-creative-commons-pd-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-pd-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsRemix">
|
|
<summary>
|
|
fa-creative-commons-remix unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-remix
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsSa">
|
|
<summary>
|
|
fa-creative-commons-sa unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-sa
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsSampling">
|
|
<summary>
|
|
fa-creative-commons-sampling unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-sampling
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsSamplingPlus">
|
|
<summary>
|
|
fa-creative-commons-sampling-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-sampling-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsShare">
|
|
<summary>
|
|
fa-creative-commons-share unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-share
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreativeCommonsZero">
|
|
<summary>
|
|
fa-creative-commons-zero unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/creative-commons-zero
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreditCard">
|
|
<summary>
|
|
fa-credit-card unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/credit-card
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreditCardBlank">
|
|
<summary>
|
|
fa-credit-card-blank unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/credit-card-blank
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CreditCardFront">
|
|
<summary>
|
|
fa-credit-card-front unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/credit-card-front
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cricket">
|
|
<summary>
|
|
fa-cricket unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/cricket
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CriticalRole">
|
|
<summary>
|
|
fa-critical-role unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/critical-role
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Crop">
|
|
<summary>
|
|
fa-crop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/crop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.CropAlt">
|
|
<summary>
|
|
fa-crop-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/crop-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cross">
|
|
<summary>
|
|
fa-cross unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cross
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Crosshairs">
|
|
<summary>
|
|
fa-crosshairs unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/crosshairs
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Crow">
|
|
<summary>
|
|
fa-crow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/crow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Crown">
|
|
<summary>
|
|
fa-crown unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/crown
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Css3">
|
|
<summary>
|
|
fa-css3 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/css3
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Css3Alt">
|
|
<summary>
|
|
fa-css3-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/css3-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cube">
|
|
<summary>
|
|
fa-cube unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cube
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cubes">
|
|
<summary>
|
|
fa-cubes unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cubes
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Curling">
|
|
<summary>
|
|
fa-curling unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/curling
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cut">
|
|
<summary>
|
|
fa-cut unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/cut
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Cuttlefish">
|
|
<summary>
|
|
fa-cuttlefish unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/cuttlefish
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DAndD">
|
|
<summary>
|
|
fa-d-and-d unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/d-and-d
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DAndDBeyond">
|
|
<summary>
|
|
fa-d-and-d-beyond unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/d-and-d-beyond
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dagger">
|
|
<summary>
|
|
fa-dagger unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dagger
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dashcube">
|
|
<summary>
|
|
fa-dashcube unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/dashcube
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Database">
|
|
<summary>
|
|
fa-database unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/database
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Deaf">
|
|
<summary>
|
|
fa-deaf unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/deaf
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Delicious">
|
|
<summary>
|
|
fa-delicious unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/delicious
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Democrat">
|
|
<summary>
|
|
fa-democrat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/democrat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Deploydog">
|
|
<summary>
|
|
fa-deploydog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/deploydog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Deskpro">
|
|
<summary>
|
|
fa-deskpro unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/deskpro
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Desktop">
|
|
<summary>
|
|
fa-desktop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/desktop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DesktopAlt">
|
|
<summary>
|
|
fa-desktop-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/desktop-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dev">
|
|
<summary>
|
|
fa-dev unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/dev
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Deviantart">
|
|
<summary>
|
|
fa-deviantart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/deviantart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dewpoint">
|
|
<summary>
|
|
fa-dewpoint unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dewpoint
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dharmachakra">
|
|
<summary>
|
|
fa-dharmachakra unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dharmachakra
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Diagnoses">
|
|
<summary>
|
|
fa-diagnoses unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/diagnoses
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Diamond">
|
|
<summary>
|
|
fa-diamond unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/diamond
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dice">
|
|
<summary>
|
|
fa-dice unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceD10">
|
|
<summary>
|
|
fa-dice-d10 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-d10
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceD12">
|
|
<summary>
|
|
fa-dice-d12 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-d12
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceD20">
|
|
<summary>
|
|
fa-dice-d20 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-d20
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceD4">
|
|
<summary>
|
|
fa-dice-d4 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-d4
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceD6">
|
|
<summary>
|
|
fa-dice-d6 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-d6
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceD8">
|
|
<summary>
|
|
fa-dice-d8 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-d8
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceFive">
|
|
<summary>
|
|
fa-dice-five unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-five
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceFour">
|
|
<summary>
|
|
fa-dice-four unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-four
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceOne">
|
|
<summary>
|
|
fa-dice-one unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-one
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceSix">
|
|
<summary>
|
|
fa-dice-six unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-six
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceThree">
|
|
<summary>
|
|
fa-dice-three unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-three
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DiceTwo">
|
|
<summary>
|
|
fa-dice-two unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dice-two
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Digg">
|
|
<summary>
|
|
fa-digg unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/digg
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DigitalOcean">
|
|
<summary>
|
|
fa-digital-ocean unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/digital-ocean
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DigitalTachograph">
|
|
<summary>
|
|
fa-digital-tachograph unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/digital-tachograph
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Diploma">
|
|
<summary>
|
|
fa-diploma unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/diploma
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Directions">
|
|
<summary>
|
|
fa-directions unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/directions
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Discord">
|
|
<summary>
|
|
fa-discord unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/discord
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Discourse">
|
|
<summary>
|
|
fa-discourse unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/discourse
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Divide">
|
|
<summary>
|
|
fa-divide unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/divide
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dizzy">
|
|
<summary>
|
|
fa-dizzy unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dizzy
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dna">
|
|
<summary>
|
|
fa-dna unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dna
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DoNotEnter">
|
|
<summary>
|
|
fa-do-not-enter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/do-not-enter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dochub">
|
|
<summary>
|
|
fa-dochub unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/dochub
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Docker">
|
|
<summary>
|
|
fa-docker unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/docker
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dog">
|
|
<summary>
|
|
fa-dog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DogLeashed">
|
|
<summary>
|
|
fa-dog-leashed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dog-leashed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DollarSign">
|
|
<summary>
|
|
fa-dollar-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dollar-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dolly">
|
|
<summary>
|
|
fa-dolly unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dolly
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DollyEmpty">
|
|
<summary>
|
|
fa-dolly-empty unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dolly-empty
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DollyFlatbed">
|
|
<summary>
|
|
fa-dolly-flatbed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dolly-flatbed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DollyFlatbedAlt">
|
|
<summary>
|
|
fa-dolly-flatbed-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dolly-flatbed-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DollyFlatbedEmpty">
|
|
<summary>
|
|
fa-dolly-flatbed-empty unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/dolly-flatbed-empty
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Donate">
|
|
<summary>
|
|
fa-donate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/donate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DoorClosed">
|
|
<summary>
|
|
fa-door-closed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/door-closed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DoorOpen">
|
|
<summary>
|
|
fa-door-open unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/door-open
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DotCircle">
|
|
<summary>
|
|
fa-dot-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dot-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dove">
|
|
<summary>
|
|
fa-dove unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dove
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Download">
|
|
<summary>
|
|
fa-download unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/download
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Draft2digital">
|
|
<summary>
|
|
fa-draft2digital unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/draft2digital
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DraftingCompass">
|
|
<summary>
|
|
fa-drafting-compass unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/drafting-compass
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dragon">
|
|
<summary>
|
|
fa-dragon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dragon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DrawCircle">
|
|
<summary>
|
|
fa-draw-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/draw-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DrawPolygon">
|
|
<summary>
|
|
fa-draw-polygon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/draw-polygon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DrawSquare">
|
|
<summary>
|
|
fa-draw-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/draw-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dribbble">
|
|
<summary>
|
|
fa-dribbble unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/dribbble
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DribbbleSquare">
|
|
<summary>
|
|
fa-dribbble-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/dribbble-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dropbox">
|
|
<summary>
|
|
fa-dropbox unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/dropbox
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Drum">
|
|
<summary>
|
|
fa-drum unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/drum
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DrumSteelpan">
|
|
<summary>
|
|
fa-drum-steelpan unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/drum-steelpan
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Drumstick">
|
|
<summary>
|
|
fa-drumstick unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/drumstick
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.DrumstickBite">
|
|
<summary>
|
|
fa-drumstick-bite unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/drumstick-bite
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Drupal">
|
|
<summary>
|
|
fa-drupal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/drupal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Duck">
|
|
<summary>
|
|
fa-duck unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/duck
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dumbbell">
|
|
<summary>
|
|
fa-dumbbell unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dumbbell
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dungeon">
|
|
<summary>
|
|
fa-dungeon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/dungeon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Dyalog">
|
|
<summary>
|
|
fa-dyalog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/dyalog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ear">
|
|
<summary>
|
|
fa-ear unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ear
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Earlybirds">
|
|
<summary>
|
|
fa-earlybirds unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/earlybirds
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ebay">
|
|
<summary>
|
|
fa-ebay unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/ebay
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Eclipse">
|
|
<summary>
|
|
fa-eclipse unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/eclipse
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EclipseAlt">
|
|
<summary>
|
|
fa-eclipse-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/eclipse-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Edge">
|
|
<summary>
|
|
fa-edge unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/edge
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Edit">
|
|
<summary>
|
|
fa-edit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/edit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Eject">
|
|
<summary>
|
|
fa-eject unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/eject
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Elementor">
|
|
<summary>
|
|
fa-elementor unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/elementor
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Elephant">
|
|
<summary>
|
|
fa-elephant unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/elephant
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EllipsisH">
|
|
<summary>
|
|
fa-ellipsis-h unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ellipsis-h
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EllipsisHAlt">
|
|
<summary>
|
|
fa-ellipsis-h-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ellipsis-h-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EllipsisV">
|
|
<summary>
|
|
fa-ellipsis-v unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ellipsis-v
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EllipsisVAlt">
|
|
<summary>
|
|
fa-ellipsis-v-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ellipsis-v-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ello">
|
|
<summary>
|
|
fa-ello unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/ello
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ember">
|
|
<summary>
|
|
fa-ember unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/ember
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Empire">
|
|
<summary>
|
|
fa-empire unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/empire
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EmptySet">
|
|
<summary>
|
|
fa-empty-set unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/empty-set
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EngineWarning">
|
|
<summary>
|
|
fa-engine-warning unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/engine-warning
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Envelope">
|
|
<summary>
|
|
fa-envelope unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/envelope
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EnvelopeOpen">
|
|
<summary>
|
|
fa-envelope-open unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/envelope-open
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EnvelopeOpenDollar">
|
|
<summary>
|
|
fa-envelope-open-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/envelope-open-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EnvelopeOpenText">
|
|
<summary>
|
|
fa-envelope-open-text unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/envelope-open-text
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EnvelopeSquare">
|
|
<summary>
|
|
fa-envelope-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/envelope-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Envira">
|
|
<summary>
|
|
fa-envira unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/envira
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Equal">
|
|
<summary>
|
|
fa-equals unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/equals
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Eraser">
|
|
<summary>
|
|
fa-eraser unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/eraser
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Erlang">
|
|
<summary>
|
|
fa-erlang unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/erlang
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ethereum">
|
|
<summary>
|
|
fa-ethereum unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/ethereum
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Etsy">
|
|
<summary>
|
|
fa-etsy unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/etsy
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EuroSign">
|
|
<summary>
|
|
fa-euro-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/euro-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Exchange">
|
|
<summary>
|
|
fa-exchange unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/exchange
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExchangeAlt">
|
|
<summary>
|
|
fa-exchange-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/exchange-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Exclamation">
|
|
<summary>
|
|
fa-exclamation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/exclamation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExclamationCircle">
|
|
<summary>
|
|
fa-exclamation-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/exclamation-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExclamationSquare">
|
|
<summary>
|
|
fa-exclamation-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/exclamation-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExclamationTriangle">
|
|
<summary>
|
|
fa-exclamation-triangle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/exclamation-triangle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Expand">
|
|
<summary>
|
|
fa-expand unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/expand
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExpandAlt">
|
|
<summary>
|
|
fa-expand-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/expand-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExpandArrows">
|
|
<summary>
|
|
fa-expand-arrows unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/expand-arrows
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExpandArrowsAlt">
|
|
<summary>
|
|
fa-expand-arrows-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/expand-arrows-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExpandWide">
|
|
<summary>
|
|
fa-expand-wide unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/expand-wide
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Expeditedssl">
|
|
<summary>
|
|
fa-expeditedssl unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/expeditedssl
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExternalLink">
|
|
<summary>
|
|
fa-external-link unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/external-link
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExternalLinkAlt">
|
|
<summary>
|
|
fa-external-link-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/external-link-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExternalLinkSquare">
|
|
<summary>
|
|
fa-external-link-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/external-link-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ExternalLinkSquareAlt">
|
|
<summary>
|
|
fa-external-link-square-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/external-link-square-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Eye">
|
|
<summary>
|
|
fa-eye unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/eye
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EyeDropper">
|
|
<summary>
|
|
fa-eye-dropper unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/eye-dropper
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EyeEvil">
|
|
<summary>
|
|
fa-eye-evil unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/eye-evil
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.EyeSlash">
|
|
<summary>
|
|
fa-eye-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/eye-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Facebook">
|
|
<summary>
|
|
fa-facebook unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/facebook
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FacebookF">
|
|
<summary>
|
|
fa-facebook-f unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/facebook-f
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FacebookMessenger">
|
|
<summary>
|
|
fa-facebook-messenger unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/facebook-messenger
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FacebookSquare">
|
|
<summary>
|
|
fa-facebook-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/facebook-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FantasyFlightGames">
|
|
<summary>
|
|
fa-fantasy-flight-games unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/fantasy-flight-games
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FastBackward">
|
|
<summary>
|
|
fa-fast-backward unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fast-backward
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FastForward">
|
|
<summary>
|
|
fa-fast-forward unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fast-forward
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fax">
|
|
<summary>
|
|
fa-fax unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fax
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Feather">
|
|
<summary>
|
|
fa-feather unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/feather
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FeatherAlt">
|
|
<summary>
|
|
fa-feather-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/feather-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Female">
|
|
<summary>
|
|
fa-female unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/female
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FieldHockey">
|
|
<summary>
|
|
fa-field-hockey unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/field-hockey
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FighterJet">
|
|
<summary>
|
|
fa-fighter-jet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fighter-jet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.File">
|
|
<summary>
|
|
fa-file unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileAlt">
|
|
<summary>
|
|
fa-file-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileArchive">
|
|
<summary>
|
|
fa-file-archive unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-archive
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileAudio">
|
|
<summary>
|
|
fa-file-audio unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-audio
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileCertificate">
|
|
<summary>
|
|
fa-file-certificate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-certificate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileChartLine">
|
|
<summary>
|
|
fa-file-chart-line unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-chart-line
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileChartPie">
|
|
<summary>
|
|
fa-file-chart-pie unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-chart-pie
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileCheck">
|
|
<summary>
|
|
fa-file-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileCode">
|
|
<summary>
|
|
fa-file-code unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-code
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileContract">
|
|
<summary>
|
|
fa-file-contract unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-contract
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileCsv">
|
|
<summary>
|
|
fa-file-csv unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-csv
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileDownload">
|
|
<summary>
|
|
fa-file-download unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-download
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileEdit">
|
|
<summary>
|
|
fa-file-edit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-edit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileExcel">
|
|
<summary>
|
|
fa-file-excel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-excel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileExclamation">
|
|
<summary>
|
|
fa-file-exclamation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-exclamation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileExport">
|
|
<summary>
|
|
fa-file-export unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-export
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileImage">
|
|
<summary>
|
|
fa-file-image unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-image
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileImport">
|
|
<summary>
|
|
fa-file-import unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-import
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileInvoice">
|
|
<summary>
|
|
fa-file-invoice unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-invoice
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileInvoiceDollar">
|
|
<summary>
|
|
fa-file-invoice-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-invoice-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileMedical">
|
|
<summary>
|
|
fa-file-medical unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-medical
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileMedicalAlt">
|
|
<summary>
|
|
fa-file-medical-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-medical-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileMinus">
|
|
<summary>
|
|
fa-file-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FilePdf">
|
|
<summary>
|
|
fa-file-pdf unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-pdf
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FilePlus">
|
|
<summary>
|
|
fa-file-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FilePowerpoint">
|
|
<summary>
|
|
fa-file-powerpoint unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-powerpoint
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FilePrescription">
|
|
<summary>
|
|
fa-file-prescription unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-prescription
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileSignature">
|
|
<summary>
|
|
fa-file-signature unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-signature
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileSpreadsheet">
|
|
<summary>
|
|
fa-file-spreadsheet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-spreadsheet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileTimes">
|
|
<summary>
|
|
fa-file-times unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-times
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileUpload">
|
|
<summary>
|
|
fa-file-upload unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-upload
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileUser">
|
|
<summary>
|
|
fa-file-user unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-user
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileVideo">
|
|
<summary>
|
|
fa-file-video unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-video
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FileWord">
|
|
<summary>
|
|
fa-file-word unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/file-word
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fill">
|
|
<summary>
|
|
fa-fill unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fill
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FillDrip">
|
|
<summary>
|
|
fa-fill-drip unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fill-drip
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Film">
|
|
<summary>
|
|
fa-film unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/film
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FilmAlt">
|
|
<summary>
|
|
fa-film-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/film-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Filter">
|
|
<summary>
|
|
fa-filter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/filter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fingerprint">
|
|
<summary>
|
|
fa-fingerprint unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fingerprint
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fire">
|
|
<summary>
|
|
fa-fire unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fire
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FireExtinguisher">
|
|
<summary>
|
|
fa-fire-extinguisher unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fire-extinguisher
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FireSmoke">
|
|
<summary>
|
|
fa-fire-smoke unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/fire-smoke
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Firefox">
|
|
<summary>
|
|
fa-firefox unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/firefox
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FirstAid">
|
|
<summary>
|
|
fa-first-aid unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/first-aid
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FirstOrder">
|
|
<summary>
|
|
fa-first-order unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/first-order
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FirstOrderAlt">
|
|
<summary>
|
|
fa-first-order-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/first-order-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Firstdraft">
|
|
<summary>
|
|
fa-firstdraft unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/firstdraft
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fish">
|
|
<summary>
|
|
fa-fish unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fish
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FistRaised">
|
|
<summary>
|
|
fa-fist-raised unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/fist-raised
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Flag">
|
|
<summary>
|
|
fa-flag unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/flag
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FlagAlt">
|
|
<summary>
|
|
fa-flag-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/flag-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FlagCheckered">
|
|
<summary>
|
|
fa-flag-checkered unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/flag-checkered
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FlagUsa">
|
|
<summary>
|
|
fa-flag-usa unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/flag-usa
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Flame">
|
|
<summary>
|
|
fa-flame unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/flame
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Flask">
|
|
<summary>
|
|
fa-flask unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/flask
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FlaskPoison">
|
|
<summary>
|
|
fa-flask-poison unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/flask-poison
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FlaskPotion">
|
|
<summary>
|
|
fa-flask-potion unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/flask-potion
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Flickr">
|
|
<summary>
|
|
fa-flickr unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/flickr
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Flipboard">
|
|
<summary>
|
|
fa-flipboard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/flipboard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Flushed">
|
|
<summary>
|
|
fa-flushed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/flushed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fly">
|
|
<summary>
|
|
fa-fly unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/fly
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fog">
|
|
<summary>
|
|
fa-fog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/fog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Folder">
|
|
<summary>
|
|
fa-folder unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/folder
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FolderMinus">
|
|
<summary>
|
|
fa-folder-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/folder-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FolderOpen">
|
|
<summary>
|
|
fa-folder-open unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/folder-open
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FolderPlus">
|
|
<summary>
|
|
fa-folder-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/folder-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FolderTimes">
|
|
<summary>
|
|
fa-folder-times unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/folder-times
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Folders">
|
|
<summary>
|
|
fa-folders unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/folders
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Font">
|
|
<summary>
|
|
fa-font unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/font
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FontAwesome">
|
|
<summary>
|
|
fa-font-awesome unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/font-awesome
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FontAwesomeAlt">
|
|
<summary>
|
|
fa-font-awesome-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/font-awesome-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FontAwesomeFlag">
|
|
<summary>
|
|
fa-font-awesome-flag unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/font-awesome-flag
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fonticons">
|
|
<summary>
|
|
fa-fonticons unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/fonticons
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FonticonsFi">
|
|
<summary>
|
|
fa-fonticons-fi unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/fonticons-fi
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FootballBall">
|
|
<summary>
|
|
fa-football-ball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/football-ball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FootballHelmet">
|
|
<summary>
|
|
fa-football-helmet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/football-helmet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Forklift">
|
|
<summary>
|
|
fa-forklift unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/forklift
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FortAwesome">
|
|
<summary>
|
|
fa-fort-awesome unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/fort-awesome
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FortAwesomeAlt">
|
|
<summary>
|
|
fa-fort-awesome-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/fort-awesome-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Forumbee">
|
|
<summary>
|
|
fa-forumbee unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/forumbee
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Forward">
|
|
<summary>
|
|
fa-forward unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/forward
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Foursquare">
|
|
<summary>
|
|
fa-foursquare unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/foursquare
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fragile">
|
|
<summary>
|
|
fa-fragile unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/fragile
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FreeCodeCamp">
|
|
<summary>
|
|
fa-free-code-camp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/free-code-camp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Freebsd">
|
|
<summary>
|
|
fa-freebsd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/freebsd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Frog">
|
|
<summary>
|
|
fa-frog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/frog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Frown">
|
|
<summary>
|
|
fa-frown unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/frown
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FrownOpen">
|
|
<summary>
|
|
fa-frown-open unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/frown-open
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Fulcrum">
|
|
<summary>
|
|
fa-fulcrum unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/fulcrum
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Function">
|
|
<summary>
|
|
fa-function unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/function
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.FunnelDollar">
|
|
<summary>
|
|
fa-funnel-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/funnel-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Futbol">
|
|
<summary>
|
|
fa-futbol unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/futbol
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GalacticRepublic">
|
|
<summary>
|
|
fa-galactic-republic unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/galactic-republic
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GalacticSenate">
|
|
<summary>
|
|
fa-galactic-senate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/galactic-senate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gamepad">
|
|
<summary>
|
|
fa-gamepad unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/gamepad
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GasPump">
|
|
<summary>
|
|
fa-gas-pump unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/gas-pump
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GasPumpSlash">
|
|
<summary>
|
|
fa-gas-pump-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/gas-pump-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gavel">
|
|
<summary>
|
|
fa-gavel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/gavel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gem">
|
|
<summary>
|
|
fa-gem unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/gem
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Genderless">
|
|
<summary>
|
|
fa-genderless unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/genderless
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GetPocket">
|
|
<summary>
|
|
fa-get-pocket unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/get-pocket
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gg">
|
|
<summary>
|
|
fa-gg unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gg
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GgCircle">
|
|
<summary>
|
|
fa-gg-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gg-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ghost">
|
|
<summary>
|
|
fa-ghost unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ghost
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gift">
|
|
<summary>
|
|
fa-gift unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/gift
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GiftCard">
|
|
<summary>
|
|
fa-gift-card unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/gift-card
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Git">
|
|
<summary>
|
|
fa-git unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/git
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GitSquare">
|
|
<summary>
|
|
fa-git-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/git-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Github">
|
|
<summary>
|
|
fa-github unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/github
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GithubAlt">
|
|
<summary>
|
|
fa-github-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/github-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GithubSquare">
|
|
<summary>
|
|
fa-github-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/github-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gitkraken">
|
|
<summary>
|
|
fa-gitkraken unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gitkraken
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gitlab">
|
|
<summary>
|
|
fa-gitlab unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gitlab
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gitter">
|
|
<summary>
|
|
fa-gitter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gitter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GlassMartini">
|
|
<summary>
|
|
fa-glass-martini unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/glass-martini
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GlassMartiniAlt">
|
|
<summary>
|
|
fa-glass-martini-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/glass-martini-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Glasses">
|
|
<summary>
|
|
fa-glasses unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/glasses
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GlassesAlt">
|
|
<summary>
|
|
fa-glasses-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/glasses-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Glide">
|
|
<summary>
|
|
fa-glide unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/glide
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GlideG">
|
|
<summary>
|
|
fa-glide-g unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/glide-g
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Globe">
|
|
<summary>
|
|
fa-globe unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/globe
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GlobeAfrica">
|
|
<summary>
|
|
fa-globe-africa unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/globe-africa
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GlobeAmericas">
|
|
<summary>
|
|
fa-globe-americas unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/globe-americas
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GlobeAsia">
|
|
<summary>
|
|
fa-globe-asia unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/globe-asia
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GlobeStand">
|
|
<summary>
|
|
fa-globe-stand unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/globe-stand
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gofore">
|
|
<summary>
|
|
fa-gofore unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gofore
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GolfBall">
|
|
<summary>
|
|
fa-golf-ball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/golf-ball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GolfClub">
|
|
<summary>
|
|
fa-golf-club unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/golf-club
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Goodreads">
|
|
<summary>
|
|
fa-goodreads unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/goodreads
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GoodreadsG">
|
|
<summary>
|
|
fa-goodreads-g unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/goodreads-g
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Google">
|
|
<summary>
|
|
fa-google unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/google
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GoogleDrive">
|
|
<summary>
|
|
fa-google-drive unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/google-drive
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GooglePlay">
|
|
<summary>
|
|
fa-google-play unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/google-play
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GooglePlus">
|
|
<summary>
|
|
fa-google-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/google-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GooglePlusG">
|
|
<summary>
|
|
fa-google-plus-g unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/google-plus-g
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GooglePlusSquare">
|
|
<summary>
|
|
fa-google-plus-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/google-plus-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GoogleWallet">
|
|
<summary>
|
|
fa-google-wallet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/google-wallet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gopuram">
|
|
<summary>
|
|
fa-gopuram unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/gopuram
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GraduationCap">
|
|
<summary>
|
|
fa-graduation-cap unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/graduation-cap
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gratipay">
|
|
<summary>
|
|
fa-gratipay unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gratipay
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Grav">
|
|
<summary>
|
|
fa-grav unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/grav
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GreaterThan">
|
|
<summary>
|
|
fa-greater-than unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/greater-than
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GreaterThanEqual">
|
|
<summary>
|
|
fa-greater-than-equal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/greater-than-equal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Grimace">
|
|
<summary>
|
|
fa-grimace unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grimace
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Grin">
|
|
<summary>
|
|
fa-grin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinAlt">
|
|
<summary>
|
|
fa-grin-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinBeam">
|
|
<summary>
|
|
fa-grin-beam unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-beam
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinBeamSweat">
|
|
<summary>
|
|
fa-grin-beam-sweat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-beam-sweat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinHearts">
|
|
<summary>
|
|
fa-grin-hearts unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-hearts
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinSquint">
|
|
<summary>
|
|
fa-grin-squint unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-squint
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinSquintTears">
|
|
<summary>
|
|
fa-grin-squint-tears unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-squint-tears
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinStars">
|
|
<summary>
|
|
fa-grin-stars unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-stars
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinTears">
|
|
<summary>
|
|
fa-grin-tears unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-tears
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinTongue">
|
|
<summary>
|
|
fa-grin-tongue unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-tongue
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinTongueSquint">
|
|
<summary>
|
|
fa-grin-tongue-squint unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-tongue-squint
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinTongueWink">
|
|
<summary>
|
|
fa-grin-tongue-wink unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-tongue-wink
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GrinWink">
|
|
<summary>
|
|
fa-grin-wink unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grin-wink
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GripHorizontal">
|
|
<summary>
|
|
fa-grip-horizontal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grip-horizontal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.GripVertical">
|
|
<summary>
|
|
fa-grip-vertical unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/grip-vertical
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gripfire">
|
|
<summary>
|
|
fa-gripfire unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gripfire
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Grunt">
|
|
<summary>
|
|
fa-grunt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/grunt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Gulp">
|
|
<summary>
|
|
fa-gulp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/gulp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HSquare">
|
|
<summary>
|
|
fa-h-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/h-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.H1">
|
|
<summary>
|
|
fa-h1 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/h1
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.H2">
|
|
<summary>
|
|
fa-h2 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/h2
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.H3">
|
|
<summary>
|
|
fa-h3 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/h3
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HackerNews">
|
|
<summary>
|
|
fa-hacker-news unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hacker-news
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HackerNewsSquare">
|
|
<summary>
|
|
fa-hacker-news-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hacker-news-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hackerrank">
|
|
<summary>
|
|
fa-hackerrank unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hackerrank
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hammer">
|
|
<summary>
|
|
fa-hammer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hammer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HammerWar">
|
|
<summary>
|
|
fa-hammer-war unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hammer-war
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hamsa">
|
|
<summary>
|
|
fa-hamsa unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hamsa
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandHeart">
|
|
<summary>
|
|
fa-hand-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandHolding">
|
|
<summary>
|
|
fa-hand-holding unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-holding
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandHoldingBox">
|
|
<summary>
|
|
fa-hand-holding-box unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-holding-box
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandHoldingHeart">
|
|
<summary>
|
|
fa-hand-holding-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-holding-heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandHoldingMagic">
|
|
<summary>
|
|
fa-hand-holding-magic unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-holding-magic
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandHoldingSeedling">
|
|
<summary>
|
|
fa-hand-holding-seedling unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-holding-seedling
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandHoldingUsd">
|
|
<summary>
|
|
fa-hand-holding-usd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-holding-usd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandHoldingWater">
|
|
<summary>
|
|
fa-hand-holding-water unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-holding-water
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandLizard">
|
|
<summary>
|
|
fa-hand-lizard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-lizard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandPaper">
|
|
<summary>
|
|
fa-hand-paper unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-paper
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandPeace">
|
|
<summary>
|
|
fa-hand-peace unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-peace
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandPointDown">
|
|
<summary>
|
|
fa-hand-point-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-point-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandPointLeft">
|
|
<summary>
|
|
fa-hand-point-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-point-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandPointRight">
|
|
<summary>
|
|
fa-hand-point-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-point-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandPointUp">
|
|
<summary>
|
|
fa-hand-point-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-point-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandPointer">
|
|
<summary>
|
|
fa-hand-pointer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-pointer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandReceiving">
|
|
<summary>
|
|
fa-hand-receiving unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-receiving
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandRock">
|
|
<summary>
|
|
fa-hand-rock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-rock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandScissors">
|
|
<summary>
|
|
fa-hand-scissors unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-scissors
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandSpock">
|
|
<summary>
|
|
fa-hand-spock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hand-spock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hands">
|
|
<summary>
|
|
fa-hands unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hands
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandsHeart">
|
|
<summary>
|
|
fa-hands-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hands-heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandsHelping">
|
|
<summary>
|
|
fa-hands-helping unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hands-helping
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandsUsd">
|
|
<summary>
|
|
fa-hands-usd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hands-usd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Handshake">
|
|
<summary>
|
|
fa-handshake unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/handshake
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HandshakeAlt">
|
|
<summary>
|
|
fa-handshake-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/handshake-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hanukiah">
|
|
<summary>
|
|
fa-hanukiah unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hanukiah
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hashtag">
|
|
<summary>
|
|
fa-hashtag unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hashtag
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HatWitch">
|
|
<summary>
|
|
fa-hat-witch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hat-witch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HatWizard">
|
|
<summary>
|
|
fa-hat-wizard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hat-wizard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Haykal">
|
|
<summary>
|
|
fa-haykal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/haykal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hdd">
|
|
<summary>
|
|
fa-hdd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hdd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HeadSide">
|
|
<summary>
|
|
fa-head-side unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/head-side
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HeadVr">
|
|
<summary>
|
|
fa-head-vr unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/head-vr
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Heading">
|
|
<summary>
|
|
fa-heading unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/heading
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Headphones">
|
|
<summary>
|
|
fa-headphones unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/headphones
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HeadphonesAlt">
|
|
<summary>
|
|
fa-headphones-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/headphones-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Headset">
|
|
<summary>
|
|
fa-headset unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/headset
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Heart">
|
|
<summary>
|
|
fa-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HeartCircle">
|
|
<summary>
|
|
fa-heart-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/heart-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HeartRate">
|
|
<summary>
|
|
fa-heart-rate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/heart-rate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HeartSquare">
|
|
<summary>
|
|
fa-heart-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/heart-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Heartbeat">
|
|
<summary>
|
|
fa-heartbeat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/heartbeat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Helicopter">
|
|
<summary>
|
|
fa-helicopter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/helicopter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HelmetBattle">
|
|
<summary>
|
|
fa-helmet-battle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/helmet-battle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hexagon">
|
|
<summary>
|
|
fa-hexagon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hexagon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Highlighter">
|
|
<summary>
|
|
fa-highlighter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/highlighter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hiking">
|
|
<summary>
|
|
fa-hiking unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hiking
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hippo">
|
|
<summary>
|
|
fa-hippo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hippo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hips">
|
|
<summary>
|
|
fa-hips unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hips
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HireAHelper">
|
|
<summary>
|
|
fa-hire-a-helper unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hire-a-helper
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.History">
|
|
<summary>
|
|
fa-history unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/history
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HockeyMask">
|
|
<summary>
|
|
fa-hockey-mask unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hockey-mask
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HockeyPuck">
|
|
<summary>
|
|
fa-hockey-puck unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hockey-puck
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HockeySticks">
|
|
<summary>
|
|
fa-hockey-sticks unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hockey-sticks
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Home">
|
|
<summary>
|
|
fa-home unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/home
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HomeHeart">
|
|
<summary>
|
|
fa-home-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/home-heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HoodCloak">
|
|
<summary>
|
|
fa-hood-cloak unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hood-cloak
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hooli">
|
|
<summary>
|
|
fa-hooli unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hooli
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hornbill">
|
|
<summary>
|
|
fa-hornbill unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hornbill
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Horse">
|
|
<summary>
|
|
fa-horse unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/horse
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hospital">
|
|
<summary>
|
|
fa-hospital unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hospital
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HospitalAlt">
|
|
<summary>
|
|
fa-hospital-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hospital-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HospitalSymbol">
|
|
<summary>
|
|
fa-hospital-symbol unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hospital-symbol
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HotTub">
|
|
<summary>
|
|
fa-hot-tub unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hot-tub
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hotel">
|
|
<summary>
|
|
fa-hotel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hotel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hotjar">
|
|
<summary>
|
|
fa-hotjar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hotjar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hourglass">
|
|
<summary>
|
|
fa-hourglass unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hourglass
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HourglassEnd">
|
|
<summary>
|
|
fa-hourglass-end unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hourglass-end
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HourglassHalf">
|
|
<summary>
|
|
fa-hourglass-half unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hourglass-half
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HourglassStart">
|
|
<summary>
|
|
fa-hourglass-start unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hourglass-start
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HouseDamage">
|
|
<summary>
|
|
fa-house-damage unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/house-damage
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.HouseFlood">
|
|
<summary>
|
|
fa-house-flood unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/house-flood
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Houzz">
|
|
<summary>
|
|
fa-houzz unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/houzz
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hryvnia">
|
|
<summary>
|
|
fa-hryvnia unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/hryvnia
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Html5">
|
|
<summary>
|
|
fa-html5 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/html5
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hubspot">
|
|
<summary>
|
|
fa-hubspot unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/hubspot
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Humidity">
|
|
<summary>
|
|
fa-humidity unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/humidity
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Hurricane">
|
|
<summary>
|
|
fa-hurricane unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/hurricane
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ICursor">
|
|
<summary>
|
|
fa-i-cursor unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/i-cursor
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.IdBadge">
|
|
<summary>
|
|
fa-id-badge unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/id-badge
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.IdCard">
|
|
<summary>
|
|
fa-id-card unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/id-card
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.IdCardAlt">
|
|
<summary>
|
|
fa-id-card-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/id-card-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Image">
|
|
<summary>
|
|
fa-image unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/image
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Images">
|
|
<summary>
|
|
fa-images unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/images
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Imdb">
|
|
<summary>
|
|
fa-imdb unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/imdb
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Inbox">
|
|
<summary>
|
|
fa-inbox unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/inbox
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.InboxIn">
|
|
<summary>
|
|
fa-inbox-in unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/inbox-in
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.InboxOut">
|
|
<summary>
|
|
fa-inbox-out unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/inbox-out
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Indent">
|
|
<summary>
|
|
fa-indent unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/indent
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Industry">
|
|
<summary>
|
|
fa-industry unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/industry
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.IndustryAlt">
|
|
<summary>
|
|
fa-industry-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/industry-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Infinity">
|
|
<summary>
|
|
fa-infinity unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/infinity
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Info">
|
|
<summary>
|
|
fa-info unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/info
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.InfoCircle">
|
|
<summary>
|
|
fa-info-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/info-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.InfoSquare">
|
|
<summary>
|
|
fa-info-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/info-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Inhaler">
|
|
<summary>
|
|
fa-inhaler unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/inhaler
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Instagram">
|
|
<summary>
|
|
fa-instagram unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/instagram
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Integral">
|
|
<summary>
|
|
fa-integral unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/integral
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.InternetExplorer">
|
|
<summary>
|
|
fa-internet-explorer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/internet-explorer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Intersection">
|
|
<summary>
|
|
fa-intersection unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/intersection
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Inventory">
|
|
<summary>
|
|
fa-inventory unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/inventory
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ioxhost">
|
|
<summary>
|
|
fa-ioxhost unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/ioxhost
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Italic">
|
|
<summary>
|
|
fa-italic unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/italic
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Itunes">
|
|
<summary>
|
|
fa-itunes unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/itunes
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ItunesNote">
|
|
<summary>
|
|
fa-itunes-note unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/itunes-note
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.JackOLantern">
|
|
<summary>
|
|
fa-jack-o-lantern unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/jack-o-lantern
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Java">
|
|
<summary>
|
|
fa-java unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/java
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Jedi">
|
|
<summary>
|
|
fa-jedi unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/jedi
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.JediOrder">
|
|
<summary>
|
|
fa-jedi-order unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/jedi-order
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Jenkins">
|
|
<summary>
|
|
fa-jenkins unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/jenkins
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Joget">
|
|
<summary>
|
|
fa-joget unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/joget
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Joint">
|
|
<summary>
|
|
fa-joint unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/joint
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Joomla">
|
|
<summary>
|
|
fa-joomla unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/joomla
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.JournalWhills">
|
|
<summary>
|
|
fa-journal-whills unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/journal-whills
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Js">
|
|
<summary>
|
|
fa-js unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/js
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.JsSquare">
|
|
<summary>
|
|
fa-js-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/js-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Jsfiddle">
|
|
<summary>
|
|
fa-jsfiddle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/jsfiddle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Kaaba">
|
|
<summary>
|
|
fa-kaaba unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/kaaba
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Kaggle">
|
|
<summary>
|
|
fa-kaggle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/kaggle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Key">
|
|
<summary>
|
|
fa-key unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/key
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.KeySkeleton">
|
|
<summary>
|
|
fa-key-skeleton unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/key-skeleton
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Keybase">
|
|
<summary>
|
|
fa-keybase unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/keybase
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Keyboard">
|
|
<summary>
|
|
fa-keyboard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/keyboard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Keycdn">
|
|
<summary>
|
|
fa-keycdn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/keycdn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Keynote">
|
|
<summary>
|
|
fa-keynote unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/keynote
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Khanda">
|
|
<summary>
|
|
fa-khanda unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/khanda
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Kickstarter">
|
|
<summary>
|
|
fa-kickstarter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/kickstarter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.KickstarterK">
|
|
<summary>
|
|
fa-kickstarter-k unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/kickstarter-k
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Kidneys">
|
|
<summary>
|
|
fa-kidneys unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/kidneys
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Kiss">
|
|
<summary>
|
|
fa-kiss unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/kiss
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.KissBeam">
|
|
<summary>
|
|
fa-kiss-beam unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/kiss-beam
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.KissWinkHeart">
|
|
<summary>
|
|
fa-kiss-wink-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/kiss-wink-heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Kite">
|
|
<summary>
|
|
fa-kite unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/kite
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.KiwiBird">
|
|
<summary>
|
|
fa-kiwi-bird unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/kiwi-bird
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.KnifeKitchen">
|
|
<summary>
|
|
fa-knife-kitchen unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/knife-kitchen
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Korvue">
|
|
<summary>
|
|
fa-korvue unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/korvue
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lambda">
|
|
<summary>
|
|
fa-lambda unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lambda
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lamp">
|
|
<summary>
|
|
fa-lamp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lamp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Landmark">
|
|
<summary>
|
|
fa-landmark unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/landmark
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LandmarkAlt">
|
|
<summary>
|
|
fa-landmark-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/landmark-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Language">
|
|
<summary>
|
|
fa-language unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/language
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Laptop">
|
|
<summary>
|
|
fa-laptop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/laptop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LaptopCode">
|
|
<summary>
|
|
fa-laptop-code unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/laptop-code
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Laravel">
|
|
<summary>
|
|
fa-laravel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/laravel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lastfm">
|
|
<summary>
|
|
fa-lastfm unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/lastfm
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LastfmSquare">
|
|
<summary>
|
|
fa-lastfm-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/lastfm-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Laugh">
|
|
<summary>
|
|
fa-laugh unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/laugh
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LaughBeam">
|
|
<summary>
|
|
fa-laugh-beam unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/laugh-beam
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LaughSquint">
|
|
<summary>
|
|
fa-laugh-squint unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/laugh-squint
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LaughWink">
|
|
<summary>
|
|
fa-laugh-wink unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/laugh-wink
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LayerGroup">
|
|
<summary>
|
|
fa-layer-group unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/layer-group
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LayerMinus">
|
|
<summary>
|
|
fa-layer-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/layer-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LayerPlus">
|
|
<summary>
|
|
fa-layer-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/layer-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Leaf">
|
|
<summary>
|
|
fa-leaf unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/leaf
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LeafHeart">
|
|
<summary>
|
|
fa-leaf-heart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/leaf-heart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LeafMaple">
|
|
<summary>
|
|
fa-leaf-maple unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/leaf-maple
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LeafOak">
|
|
<summary>
|
|
fa-leaf-oak unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/leaf-oak
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Leanpub">
|
|
<summary>
|
|
fa-leanpub unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/leanpub
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lemon">
|
|
<summary>
|
|
fa-lemon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/lemon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Less">
|
|
<summary>
|
|
fa-less unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/less
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LessThan">
|
|
<summary>
|
|
fa-less-than unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/less-than
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LessThanEqual">
|
|
<summary>
|
|
fa-less-than-equal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/less-than-equal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LevelDown">
|
|
<summary>
|
|
fa-level-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/level-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LevelDownAlt">
|
|
<summary>
|
|
fa-level-down-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/level-down-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LevelUp">
|
|
<summary>
|
|
fa-level-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/level-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LevelUpAlt">
|
|
<summary>
|
|
fa-level-up-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/level-up-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LifeRing">
|
|
<summary>
|
|
fa-life-ring unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/life-ring
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lightbulb">
|
|
<summary>
|
|
fa-lightbulb unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/lightbulb
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LightbulbDollar">
|
|
<summary>
|
|
fa-lightbulb-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lightbulb-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LightbulbExclamation">
|
|
<summary>
|
|
fa-lightbulb-exclamation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lightbulb-exclamation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LightbulbOn">
|
|
<summary>
|
|
fa-lightbulb-on unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lightbulb-on
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LightbulbSlash">
|
|
<summary>
|
|
fa-lightbulb-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lightbulb-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Line">
|
|
<summary>
|
|
fa-line unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/line
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Link">
|
|
<summary>
|
|
fa-link unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/link
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Linkedin">
|
|
<summary>
|
|
fa-linkedin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/linkedin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LinkedinIn">
|
|
<summary>
|
|
fa-linkedin-in unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/linkedin-in
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Linode">
|
|
<summary>
|
|
fa-linode unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/linode
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Linux">
|
|
<summary>
|
|
fa-linux unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/linux
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lips">
|
|
<summary>
|
|
fa-lips unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lips
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LiraSign">
|
|
<summary>
|
|
fa-lira-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/lira-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.List">
|
|
<summary>
|
|
fa-list unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/list
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ListAlt">
|
|
<summary>
|
|
fa-list-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/list-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ListOl">
|
|
<summary>
|
|
fa-list-ol unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/list-ol
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ListUl">
|
|
<summary>
|
|
fa-list-ul unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/list-ul
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Location">
|
|
<summary>
|
|
fa-location unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/location
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LocationArrow">
|
|
<summary>
|
|
fa-location-arrow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/location-arrow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LocationCircle">
|
|
<summary>
|
|
fa-location-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/location-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LocationSlash">
|
|
<summary>
|
|
fa-location-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/location-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lock">
|
|
<summary>
|
|
fa-lock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/lock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LockAlt">
|
|
<summary>
|
|
fa-lock-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lock-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LockOpen">
|
|
<summary>
|
|
fa-lock-open unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/lock-open
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LockOpenAlt">
|
|
<summary>
|
|
fa-lock-open-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lock-open-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LongArrowAltDown">
|
|
<summary>
|
|
fa-long-arrow-alt-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/long-arrow-alt-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LongArrowAltLeft">
|
|
<summary>
|
|
fa-long-arrow-alt-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/long-arrow-alt-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LongArrowAltRight">
|
|
<summary>
|
|
fa-long-arrow-alt-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/long-arrow-alt-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LongArrowAltUp">
|
|
<summary>
|
|
fa-long-arrow-alt-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/long-arrow-alt-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LongArrowDown">
|
|
<summary>
|
|
fa-long-arrow-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/long-arrow-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LongArrowLeft">
|
|
<summary>
|
|
fa-long-arrow-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/long-arrow-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LongArrowRight">
|
|
<summary>
|
|
fa-long-arrow-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/long-arrow-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LongArrowUp">
|
|
<summary>
|
|
fa-long-arrow-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/long-arrow-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Loveseat">
|
|
<summary>
|
|
fa-loveseat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/loveseat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LowVision">
|
|
<summary>
|
|
fa-low-vision unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/low-vision
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Luchador">
|
|
<summary>
|
|
fa-luchador unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/luchador
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.LuggageCart">
|
|
<summary>
|
|
fa-luggage-cart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/luggage-cart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lungs">
|
|
<summary>
|
|
fa-lungs unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/lungs
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Lyft">
|
|
<summary>
|
|
fa-lyft unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/lyft
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mace">
|
|
<summary>
|
|
fa-mace unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/mace
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Magento">
|
|
<summary>
|
|
fa-magento unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/magento
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Magic">
|
|
<summary>
|
|
fa-magic unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/magic
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Magnet">
|
|
<summary>
|
|
fa-magnet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/magnet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MailBulk">
|
|
<summary>
|
|
fa-mail-bulk unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mail-bulk
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mailchimp">
|
|
<summary>
|
|
fa-mailchimp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/mailchimp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Male">
|
|
<summary>
|
|
fa-male unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/male
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mandalorian">
|
|
<summary>
|
|
fa-mandalorian unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/mandalorian
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mandolin">
|
|
<summary>
|
|
fa-mandolin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/mandolin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Map">
|
|
<summary>
|
|
fa-map unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/map
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarked">
|
|
<summary>
|
|
fa-map-marked unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marked
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkedAlt">
|
|
<summary>
|
|
fa-map-marked-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marked-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarker">
|
|
<summary>
|
|
fa-map-marker unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerAlt">
|
|
<summary>
|
|
fa-map-marker-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerAltSlash">
|
|
<summary>
|
|
fa-map-marker-alt-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-alt-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerCheck">
|
|
<summary>
|
|
fa-map-marker-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerEdit">
|
|
<summary>
|
|
fa-map-marker-edit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-edit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerExclamation">
|
|
<summary>
|
|
fa-map-marker-exclamation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-exclamation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerMinus">
|
|
<summary>
|
|
fa-map-marker-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerPlus">
|
|
<summary>
|
|
fa-map-marker-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerQuestion">
|
|
<summary>
|
|
fa-map-marker-question unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-question
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerSlash">
|
|
<summary>
|
|
fa-map-marker-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerSmile">
|
|
<summary>
|
|
fa-map-marker-smile unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-smile
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapMarkerTimes">
|
|
<summary>
|
|
fa-map-marker-times unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-marker-times
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapPin">
|
|
<summary>
|
|
fa-map-pin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-pin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MapSigns">
|
|
<summary>
|
|
fa-map-signs unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/map-signs
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Markdown">
|
|
<summary>
|
|
fa-markdown unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/markdown
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Marker">
|
|
<summary>
|
|
fa-marker unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/marker
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mars">
|
|
<summary>
|
|
fa-mars unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mars
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MarsDouble">
|
|
<summary>
|
|
fa-mars-double unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mars-double
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MarsStroke">
|
|
<summary>
|
|
fa-mars-stroke unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mars-stroke
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MarsStrokeH">
|
|
<summary>
|
|
fa-mars-stroke-h unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mars-stroke-h
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MarsStrokeV">
|
|
<summary>
|
|
fa-mars-stroke-v unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mars-stroke-v
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mask">
|
|
<summary>
|
|
fa-mask unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mask
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mastodon">
|
|
<summary>
|
|
fa-mastodon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/mastodon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Maxcdn">
|
|
<summary>
|
|
fa-maxcdn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/maxcdn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Medal">
|
|
<summary>
|
|
fa-medal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/medal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Medapps">
|
|
<summary>
|
|
fa-medapps unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/medapps
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Medium">
|
|
<summary>
|
|
fa-medium unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/medium
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MediumM">
|
|
<summary>
|
|
fa-medium-m unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/medium-m
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Medkit">
|
|
<summary>
|
|
fa-medkit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/medkit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Medrt">
|
|
<summary>
|
|
fa-medrt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/medrt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Meetup">
|
|
<summary>
|
|
fa-meetup unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/meetup
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Megaphone">
|
|
<summary>
|
|
fa-megaphone unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/megaphone
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Megaport">
|
|
<summary>
|
|
fa-megaport unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/megaport
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Meh">
|
|
<summary>
|
|
fa-meh unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/meh
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MehBlank">
|
|
<summary>
|
|
fa-meh-blank unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/meh-blank
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MehRollingEyes">
|
|
<summary>
|
|
fa-meh-rolling-eyes unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/meh-rolling-eyes
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Memory">
|
|
<summary>
|
|
fa-memory unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/memory
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Menorah">
|
|
<summary>
|
|
fa-menorah unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/menorah
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mercury">
|
|
<summary>
|
|
fa-mercury unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mercury
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Meteor">
|
|
<summary>
|
|
fa-meteor unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/meteor
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Microchip">
|
|
<summary>
|
|
fa-microchip unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/microchip
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Microphone">
|
|
<summary>
|
|
fa-microphone unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/microphone
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MicrophoneAlt">
|
|
<summary>
|
|
fa-microphone-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/microphone-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MicrophoneAltSlash">
|
|
<summary>
|
|
fa-microphone-alt-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/microphone-alt-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MicrophoneSlash">
|
|
<summary>
|
|
fa-microphone-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/microphone-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Microscope">
|
|
<summary>
|
|
fa-microscope unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/microscope
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Microsoft">
|
|
<summary>
|
|
fa-microsoft unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/microsoft
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MindShare">
|
|
<summary>
|
|
fa-mind-share unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/mind-share
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Minus">
|
|
<summary>
|
|
fa-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MinusCircle">
|
|
<summary>
|
|
fa-minus-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/minus-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MinusHexagon">
|
|
<summary>
|
|
fa-minus-hexagon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/minus-hexagon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MinusOctagon">
|
|
<summary>
|
|
fa-minus-octagon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/minus-octagon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MinusSquare">
|
|
<summary>
|
|
fa-minus-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/minus-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mix">
|
|
<summary>
|
|
fa-mix unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/mix
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mixcloud">
|
|
<summary>
|
|
fa-mixcloud unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/mixcloud
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mizuni">
|
|
<summary>
|
|
fa-mizuni unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/mizuni
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mobile">
|
|
<summary>
|
|
fa-mobile unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mobile
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MobileAlt">
|
|
<summary>
|
|
fa-mobile-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mobile-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MobileAndroid">
|
|
<summary>
|
|
fa-mobile-android unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/mobile-android
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MobileAndroidAlt">
|
|
<summary>
|
|
fa-mobile-android-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/mobile-android-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Modx">
|
|
<summary>
|
|
fa-modx unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/modx
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Monero">
|
|
<summary>
|
|
fa-monero unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/monero
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MoneyBill">
|
|
<summary>
|
|
fa-money-bill unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/money-bill
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MoneyBillAlt">
|
|
<summary>
|
|
fa-money-bill-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/money-bill-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MoneyBillWave">
|
|
<summary>
|
|
fa-money-bill-wave unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/money-bill-wave
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MoneyBillWaveAlt">
|
|
<summary>
|
|
fa-money-bill-wave-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/money-bill-wave-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MoneyCheck">
|
|
<summary>
|
|
fa-money-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/money-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MoneyCheckAlt">
|
|
<summary>
|
|
fa-money-check-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/money-check-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MonitorHeartRate">
|
|
<summary>
|
|
fa-monitor-heart-rate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/monitor-heart-rate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Monkey">
|
|
<summary>
|
|
fa-monkey unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/monkey
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Monument">
|
|
<summary>
|
|
fa-monument unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/monument
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Moon">
|
|
<summary>
|
|
fa-moon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/moon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MoonCloud">
|
|
<summary>
|
|
fa-moon-cloud unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/moon-cloud
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MoonStars">
|
|
<summary>
|
|
fa-moon-stars unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/moon-stars
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MortarPestle">
|
|
<summary>
|
|
fa-mortar-pestle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mortar-pestle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mosque">
|
|
<summary>
|
|
fa-mosque unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mosque
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Motorcycle">
|
|
<summary>
|
|
fa-motorcycle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/motorcycle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mountain">
|
|
<summary>
|
|
fa-mountain unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mountain
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Mountains">
|
|
<summary>
|
|
fa-mountains unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/mountains
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.MousePointer">
|
|
<summary>
|
|
fa-mouse-pointer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/mouse-pointer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Music">
|
|
<summary>
|
|
fa-music unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/music
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Napster">
|
|
<summary>
|
|
fa-napster unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/napster
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Narwhal">
|
|
<summary>
|
|
fa-narwhal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/narwhal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Neos">
|
|
<summary>
|
|
fa-neos unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/neos
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.NetworkWired">
|
|
<summary>
|
|
fa-network-wired unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/network-wired
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Neuter">
|
|
<summary>
|
|
fa-neuter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/neuter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Newspaper">
|
|
<summary>
|
|
fa-newspaper unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/newspaper
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Nimblr">
|
|
<summary>
|
|
fa-nimblr unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/nimblr
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.NintendoSwitch">
|
|
<summary>
|
|
fa-nintendo-switch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/nintendo-switch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Node">
|
|
<summary>
|
|
fa-node unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/node
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.NodeJs">
|
|
<summary>
|
|
fa-node-js unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/node-js
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.NotEqual">
|
|
<summary>
|
|
fa-not-equal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/not-equal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.NotesMedical">
|
|
<summary>
|
|
fa-notes-medical unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/notes-medical
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Npm">
|
|
<summary>
|
|
fa-npm unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/npm
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ns8">
|
|
<summary>
|
|
fa-ns8 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/ns8
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Nutritionix">
|
|
<summary>
|
|
fa-nutritionix unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/nutritionix
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ObjectGroup">
|
|
<summary>
|
|
fa-object-group unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/object-group
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ObjectUngroup">
|
|
<summary>
|
|
fa-object-ungroup unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/object-ungroup
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Octagon">
|
|
<summary>
|
|
fa-octagon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/octagon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Odnoklassniki">
|
|
<summary>
|
|
fa-odnoklassniki unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/odnoklassniki
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.OdnoklassnikiSquare">
|
|
<summary>
|
|
fa-odnoklassniki-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/odnoklassniki-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.OilCan">
|
|
<summary>
|
|
fa-oil-can unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/oil-can
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.OilTemp">
|
|
<summary>
|
|
fa-oil-temp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/oil-temp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.OldRepublic">
|
|
<summary>
|
|
fa-old-republic unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/old-republic
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Om">
|
|
<summary>
|
|
fa-om unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/om
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Omega">
|
|
<summary>
|
|
fa-omega unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/omega
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Opencart">
|
|
<summary>
|
|
fa-opencart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/opencart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Openid">
|
|
<summary>
|
|
fa-openid unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/openid
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Opera">
|
|
<summary>
|
|
fa-opera unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/opera
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.OptinMonster">
|
|
<summary>
|
|
fa-optin-monster unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/optin-monster
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Osi">
|
|
<summary>
|
|
fa-osi unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/osi
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Otter">
|
|
<summary>
|
|
fa-otter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/otter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Outdent">
|
|
<summary>
|
|
fa-outdent unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/outdent
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Page4">
|
|
<summary>
|
|
fa-page4 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/page4
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pagelines">
|
|
<summary>
|
|
fa-pagelines unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pagelines
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PaintBrush">
|
|
<summary>
|
|
fa-paint-brush unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/paint-brush
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PaintBrushAlt">
|
|
<summary>
|
|
fa-paint-brush-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/paint-brush-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PaintRoller">
|
|
<summary>
|
|
fa-paint-roller unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/paint-roller
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Palette">
|
|
<summary>
|
|
fa-palette unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/palette
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Palfed">
|
|
<summary>
|
|
fa-palfed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/palfed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pallet">
|
|
<summary>
|
|
fa-pallet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pallet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PalletAlt">
|
|
<summary>
|
|
fa-pallet-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pallet-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PaperPlane">
|
|
<summary>
|
|
fa-paper-plane unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/paper-plane
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Paperclip">
|
|
<summary>
|
|
fa-paperclip unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/paperclip
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ParachuteBox">
|
|
<summary>
|
|
fa-parachute-box unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/parachute-box
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Paragraph">
|
|
<summary>
|
|
fa-paragraph unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/paragraph
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Parking">
|
|
<summary>
|
|
fa-parking unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/parking
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ParkingCircle">
|
|
<summary>
|
|
fa-parking-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/parking-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ParkingCircleSlash">
|
|
<summary>
|
|
fa-parking-circle-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/parking-circle-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ParkingSlash">
|
|
<summary>
|
|
fa-parking-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/parking-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Passport">
|
|
<summary>
|
|
fa-passport unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/passport
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pastafarianism">
|
|
<summary>
|
|
fa-pastafarianism unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pastafarianism
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Paste">
|
|
<summary>
|
|
fa-paste unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/paste
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Patreon">
|
|
<summary>
|
|
fa-patreon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/patreon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pause">
|
|
<summary>
|
|
fa-pause unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pause
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PauseCircle">
|
|
<summary>
|
|
fa-pause-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pause-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Paw">
|
|
<summary>
|
|
fa-paw unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/paw
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PawAlt">
|
|
<summary>
|
|
fa-paw-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/paw-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PawClaws">
|
|
<summary>
|
|
fa-paw-claws unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/paw-claws
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Paypal">
|
|
<summary>
|
|
fa-paypal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/paypal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Peace">
|
|
<summary>
|
|
fa-peace unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/peace
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pegasus">
|
|
<summary>
|
|
fa-pegasus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pegasus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pen">
|
|
<summary>
|
|
fa-pen unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pen
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PenAlt">
|
|
<summary>
|
|
fa-pen-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pen-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PenFancy">
|
|
<summary>
|
|
fa-pen-fancy unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pen-fancy
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PenNib">
|
|
<summary>
|
|
fa-pen-nib unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pen-nib
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PenSquare">
|
|
<summary>
|
|
fa-pen-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pen-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pencil">
|
|
<summary>
|
|
fa-pencil unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pencil
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PencilAlt">
|
|
<summary>
|
|
fa-pencil-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pencil-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PencilPaintbrush">
|
|
<summary>
|
|
fa-pencil-paintbrush unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pencil-paintbrush
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PencilRuler">
|
|
<summary>
|
|
fa-pencil-ruler unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pencil-ruler
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pennant">
|
|
<summary>
|
|
fa-pennant unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pennant
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PennyArcade">
|
|
<summary>
|
|
fa-penny-arcade unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/penny-arcade
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PeopleCarry">
|
|
<summary>
|
|
fa-people-carry unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/people-carry
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Percent">
|
|
<summary>
|
|
fa-percent unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/percent
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Percentage">
|
|
<summary>
|
|
fa-percentage unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/percentage
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Periscope">
|
|
<summary>
|
|
fa-periscope unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/periscope
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PersonBooth">
|
|
<summary>
|
|
fa-person-booth unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/person-booth
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PersonCarry">
|
|
<summary>
|
|
fa-person-carry unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/person-carry
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PersonDolly">
|
|
<summary>
|
|
fa-person-dolly unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/person-dolly
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PersonDollyEmpty">
|
|
<summary>
|
|
fa-person-dolly-empty unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/person-dolly-empty
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PersonSign">
|
|
<summary>
|
|
fa-person-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/person-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Phabricator">
|
|
<summary>
|
|
fa-phabricator unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/phabricator
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PhoenixFramework">
|
|
<summary>
|
|
fa-phoenix-framework unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/phoenix-framework
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PhoenixSquadron">
|
|
<summary>
|
|
fa-phoenix-squadron unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/phoenix-squadron
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Phone">
|
|
<summary>
|
|
fa-phone unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/phone
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PhoneOffice">
|
|
<summary>
|
|
fa-phone-office unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/phone-office
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PhonePlus">
|
|
<summary>
|
|
fa-phone-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/phone-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PhoneSlash">
|
|
<summary>
|
|
fa-phone-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/phone-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PhoneSquare">
|
|
<summary>
|
|
fa-phone-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/phone-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PhoneVolume">
|
|
<summary>
|
|
fa-phone-volume unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/phone-volume
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Php">
|
|
<summary>
|
|
fa-php unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/php
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pi">
|
|
<summary>
|
|
fa-pi unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pi
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pie">
|
|
<summary>
|
|
fa-pie unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pie
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PiedPiper">
|
|
<summary>
|
|
fa-pied-piper unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pied-piper
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PiedPiperAlt">
|
|
<summary>
|
|
fa-pied-piper-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pied-piper-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PiedPiperHat">
|
|
<summary>
|
|
fa-pied-piper-hat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pied-piper-hat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PiedPiperPp">
|
|
<summary>
|
|
fa-pied-piper-pp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pied-piper-pp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pig">
|
|
<summary>
|
|
fa-pig unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pig
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PiggyBank">
|
|
<summary>
|
|
fa-piggy-bank unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/piggy-bank
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pills">
|
|
<summary>
|
|
fa-pills unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pills
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pinterest">
|
|
<summary>
|
|
fa-pinterest unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pinterest
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PinterestP">
|
|
<summary>
|
|
fa-pinterest-p unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pinterest-p
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PinterestSquare">
|
|
<summary>
|
|
fa-pinterest-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pinterest-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlaceOfWorship">
|
|
<summary>
|
|
fa-place-of-worship unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/place-of-worship
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Plane">
|
|
<summary>
|
|
fa-plane unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/plane
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlaneAlt">
|
|
<summary>
|
|
fa-plane-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/plane-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlaneArrival">
|
|
<summary>
|
|
fa-plane-arrival unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/plane-arrival
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlaneDeparture">
|
|
<summary>
|
|
fa-plane-departure unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/plane-departure
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Play">
|
|
<summary>
|
|
fa-play unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/play
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlayCircle">
|
|
<summary>
|
|
fa-play-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/play-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Playstation">
|
|
<summary>
|
|
fa-playstation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/playstation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Plug">
|
|
<summary>
|
|
fa-plug unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/plug
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Plus">
|
|
<summary>
|
|
fa-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlusCircle">
|
|
<summary>
|
|
fa-plus-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/plus-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlusHexagon">
|
|
<summary>
|
|
fa-plus-hexagon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/plus-hexagon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlusOctagon">
|
|
<summary>
|
|
fa-plus-octagon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/plus-octagon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PlusSquare">
|
|
<summary>
|
|
fa-plus-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/plus-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Podcast">
|
|
<summary>
|
|
fa-podcast unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/podcast
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Podium">
|
|
<summary>
|
|
fa-podium unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/podium
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PodiumStar">
|
|
<summary>
|
|
fa-podium-star unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/podium-star
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Poll">
|
|
<summary>
|
|
fa-poll unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/poll
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PollH">
|
|
<summary>
|
|
fa-poll-h unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/poll-h
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PollPeople">
|
|
<summary>
|
|
fa-poll-people unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/poll-people
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Poo">
|
|
<summary>
|
|
fa-poo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/poo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PooStorm">
|
|
<summary>
|
|
fa-poo-storm unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/poo-storm
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Poop">
|
|
<summary>
|
|
fa-poop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/poop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Portrait">
|
|
<summary>
|
|
fa-portrait unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/portrait
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PoundSign">
|
|
<summary>
|
|
fa-pound-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pound-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PowerOff">
|
|
<summary>
|
|
fa-power-off unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/power-off
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pray">
|
|
<summary>
|
|
fa-pray unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/pray
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PrayingHands">
|
|
<summary>
|
|
fa-praying-hands unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/praying-hands
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Prescription">
|
|
<summary>
|
|
fa-prescription unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/prescription
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PrescriptionBottle">
|
|
<summary>
|
|
fa-prescription-bottle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/prescription-bottle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PrescriptionBottleAlt">
|
|
<summary>
|
|
fa-prescription-bottle-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/prescription-bottle-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Presentation">
|
|
<summary>
|
|
fa-presentation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/presentation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Print">
|
|
<summary>
|
|
fa-print unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/print
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PrintSlash">
|
|
<summary>
|
|
fa-print-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/print-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Procedures">
|
|
<summary>
|
|
fa-procedures unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/procedures
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ProductHunt">
|
|
<summary>
|
|
fa-product-hunt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/product-hunt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ProjectDiagram">
|
|
<summary>
|
|
fa-project-diagram unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/project-diagram
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pumpkin">
|
|
<summary>
|
|
fa-pumpkin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/pumpkin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Pushed">
|
|
<summary>
|
|
fa-pushed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/pushed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.PuzzlePiece">
|
|
<summary>
|
|
fa-puzzle-piece unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/puzzle-piece
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Python">
|
|
<summary>
|
|
fa-python unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/python
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Qq">
|
|
<summary>
|
|
fa-qq unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/qq
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Qrcode">
|
|
<summary>
|
|
fa-qrcode unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/qrcode
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Question">
|
|
<summary>
|
|
fa-question unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/question
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.QuestionCircle">
|
|
<summary>
|
|
fa-question-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/question-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.QuestionSquare">
|
|
<summary>
|
|
fa-question-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/question-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Quidditch">
|
|
<summary>
|
|
fa-quidditch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/quidditch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Quinscape">
|
|
<summary>
|
|
fa-quinscape unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/quinscape
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Quora">
|
|
<summary>
|
|
fa-quora unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/quora
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.QuoteLeft">
|
|
<summary>
|
|
fa-quote-left unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/quote-left
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.QuoteRight">
|
|
<summary>
|
|
fa-quote-right unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/quote-right
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Quran">
|
|
<summary>
|
|
fa-quran unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/quran
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RProject">
|
|
<summary>
|
|
fa-r-project unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/r-project
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Rabbit">
|
|
<summary>
|
|
fa-rabbit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/rabbit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RabbitFast">
|
|
<summary>
|
|
fa-rabbit-fast unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/rabbit-fast
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Racquet">
|
|
<summary>
|
|
fa-racquet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/racquet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Rainbow">
|
|
<summary>
|
|
fa-rainbow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/rainbow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Raindrops">
|
|
<summary>
|
|
fa-raindrops unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/raindrops
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ram">
|
|
<summary>
|
|
fa-ram unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ram
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RampLoading">
|
|
<summary>
|
|
fa-ramp-loading unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ramp-loading
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Random">
|
|
<summary>
|
|
fa-random unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/random
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ravelry">
|
|
<summary>
|
|
fa-ravelry unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/ravelry
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.React">
|
|
<summary>
|
|
fa-react unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/react
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Reacteurope">
|
|
<summary>
|
|
fa-reacteurope unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/reacteurope
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Readme">
|
|
<summary>
|
|
fa-readme unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/readme
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Rebel">
|
|
<summary>
|
|
fa-rebel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/rebel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Receipt">
|
|
<summary>
|
|
fa-receipt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/receipt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RectangleLandscape">
|
|
<summary>
|
|
fa-rectangle-landscape unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/rectangle-landscape
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RectanglePortrait">
|
|
<summary>
|
|
fa-rectangle-portrait unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/rectangle-portrait
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RectangleWide">
|
|
<summary>
|
|
fa-rectangle-wide unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/rectangle-wide
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Recycle">
|
|
<summary>
|
|
fa-recycle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/recycle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RedRiver">
|
|
<summary>
|
|
fa-red-river unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/red-river
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Reddit">
|
|
<summary>
|
|
fa-reddit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/reddit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RedditAlien">
|
|
<summary>
|
|
fa-reddit-alien unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/reddit-alien
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RedditSquare">
|
|
<summary>
|
|
fa-reddit-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/reddit-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Redo">
|
|
<summary>
|
|
fa-redo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/redo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RedoAlt">
|
|
<summary>
|
|
fa-redo-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/redo-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Registered">
|
|
<summary>
|
|
fa-registered unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/registered
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Renren">
|
|
<summary>
|
|
fa-renren unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/renren
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Repeat">
|
|
<summary>
|
|
fa-repeat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/repeat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Repeat1">
|
|
<summary>
|
|
fa-repeat-1 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/repeat-1
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Repeat1Alt">
|
|
<summary>
|
|
fa-repeat-1-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/repeat-1-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RepeatAlt">
|
|
<summary>
|
|
fa-repeat-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/repeat-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Reply">
|
|
<summary>
|
|
fa-reply unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/reply
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ReplyAll">
|
|
<summary>
|
|
fa-reply-all unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/reply-all
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Replyd">
|
|
<summary>
|
|
fa-replyd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/replyd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Republican">
|
|
<summary>
|
|
fa-republican unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/republican
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Researchgate">
|
|
<summary>
|
|
fa-researchgate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/researchgate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Resolving">
|
|
<summary>
|
|
fa-resolving unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/resolving
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Retweet">
|
|
<summary>
|
|
fa-retweet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/retweet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RetweetAlt">
|
|
<summary>
|
|
fa-retweet-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/retweet-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Rev">
|
|
<summary>
|
|
fa-rev unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/rev
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ribbon">
|
|
<summary>
|
|
fa-ribbon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ribbon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ring">
|
|
<summary>
|
|
fa-ring unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ring
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Road">
|
|
<summary>
|
|
fa-road unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/road
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Robot">
|
|
<summary>
|
|
fa-robot unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/robot
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Rocket">
|
|
<summary>
|
|
fa-rocket unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/rocket
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Rocketchat">
|
|
<summary>
|
|
fa-rocketchat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/rocketchat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Rockrms">
|
|
<summary>
|
|
fa-rockrms unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/rockrms
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Route">
|
|
<summary>
|
|
fa-route unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/route
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RouteHighway">
|
|
<summary>
|
|
fa-route-highway unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/route-highway
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RouteInterstate">
|
|
<summary>
|
|
fa-route-interstate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/route-interstate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Rss">
|
|
<summary>
|
|
fa-rss unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/rss
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RssSquare">
|
|
<summary>
|
|
fa-rss-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/rss-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RubleSign">
|
|
<summary>
|
|
fa-ruble-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ruble-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ruler">
|
|
<summary>
|
|
fa-ruler unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ruler
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RulerCombined">
|
|
<summary>
|
|
fa-ruler-combined unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ruler-combined
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RulerHorizontal">
|
|
<summary>
|
|
fa-ruler-horizontal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ruler-horizontal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RulerTriangle">
|
|
<summary>
|
|
fa-ruler-triangle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ruler-triangle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RulerVertical">
|
|
<summary>
|
|
fa-ruler-vertical unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ruler-vertical
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Running">
|
|
<summary>
|
|
fa-running unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/running
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.RupeeSign">
|
|
<summary>
|
|
fa-rupee-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/rupee-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SadCry">
|
|
<summary>
|
|
fa-sad-cry unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sad-cry
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SadTear">
|
|
<summary>
|
|
fa-sad-tear unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sad-tear
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Safari">
|
|
<summary>
|
|
fa-safari unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/safari
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sass">
|
|
<summary>
|
|
fa-sass unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/sass
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Save">
|
|
<summary>
|
|
fa-save unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/save
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Scalpel">
|
|
<summary>
|
|
fa-scalpel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scalpel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ScalpelPath">
|
|
<summary>
|
|
fa-scalpel-path unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scalpel-path
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Scanner">
|
|
<summary>
|
|
fa-scanner unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scanner
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ScannerKeyboard">
|
|
<summary>
|
|
fa-scanner-keyboard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scanner-keyboard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ScannerTouchscreen">
|
|
<summary>
|
|
fa-scanner-touchscreen unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scanner-touchscreen
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Scarecrow">
|
|
<summary>
|
|
fa-scarecrow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scarecrow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Schlix">
|
|
<summary>
|
|
fa-schlix unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/schlix
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.School">
|
|
<summary>
|
|
fa-school unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/school
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Screwdriver">
|
|
<summary>
|
|
fa-screwdriver unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/screwdriver
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Scribd">
|
|
<summary>
|
|
fa-scribd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/scribd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Scroll">
|
|
<summary>
|
|
fa-scroll unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/scroll
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ScrollOld">
|
|
<summary>
|
|
fa-scroll-old unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scroll-old
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Scrubber">
|
|
<summary>
|
|
fa-scrubber unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scrubber
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Scythe">
|
|
<summary>
|
|
fa-scythe unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/scythe
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Search">
|
|
<summary>
|
|
fa-search unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/search
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SearchDollar">
|
|
<summary>
|
|
fa-search-dollar unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/search-dollar
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SearchLocation">
|
|
<summary>
|
|
fa-search-location unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/search-location
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SearchMinus">
|
|
<summary>
|
|
fa-search-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/search-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SearchPlus">
|
|
<summary>
|
|
fa-search-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/search-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Searchengin">
|
|
<summary>
|
|
fa-searchengin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/searchengin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Seedling">
|
|
<summary>
|
|
fa-seedling unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/seedling
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sellcast">
|
|
<summary>
|
|
fa-sellcast unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/sellcast
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sellsy">
|
|
<summary>
|
|
fa-sellsy unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/sellsy
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Server">
|
|
<summary>
|
|
fa-server unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/server
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Servicestack">
|
|
<summary>
|
|
fa-servicestack unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/servicestack
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Shapes">
|
|
<summary>
|
|
fa-shapes unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shapes
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Share">
|
|
<summary>
|
|
fa-share unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/share
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShareAll">
|
|
<summary>
|
|
fa-share-all unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/share-all
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShareAlt">
|
|
<summary>
|
|
fa-share-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/share-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShareAltSquare">
|
|
<summary>
|
|
fa-share-alt-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/share-alt-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShareSquare">
|
|
<summary>
|
|
fa-share-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/share-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sheep">
|
|
<summary>
|
|
fa-sheep unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sheep
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShekelSign">
|
|
<summary>
|
|
fa-shekel-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shekel-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Shield">
|
|
<summary>
|
|
fa-shield unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/shield
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShieldAlt">
|
|
<summary>
|
|
fa-shield-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shield-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShieldCheck">
|
|
<summary>
|
|
fa-shield-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/shield-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShieldCross">
|
|
<summary>
|
|
fa-shield-cross unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/shield-cross
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ship">
|
|
<summary>
|
|
fa-ship unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ship
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShippingFast">
|
|
<summary>
|
|
fa-shipping-fast unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shipping-fast
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShippingTimed">
|
|
<summary>
|
|
fa-shipping-timed unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/shipping-timed
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Shirtsinbulk">
|
|
<summary>
|
|
fa-shirtsinbulk unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/shirtsinbulk
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShoePrints">
|
|
<summary>
|
|
fa-shoe-prints unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shoe-prints
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShoppingBag">
|
|
<summary>
|
|
fa-shopping-bag unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shopping-bag
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShoppingBasket">
|
|
<summary>
|
|
fa-shopping-basket unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shopping-basket
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShoppingCart">
|
|
<summary>
|
|
fa-shopping-cart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shopping-cart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Shopware">
|
|
<summary>
|
|
fa-shopware unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/shopware
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Shovel">
|
|
<summary>
|
|
fa-shovel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/shovel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Shower">
|
|
<summary>
|
|
fa-shower unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shower
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Shredder">
|
|
<summary>
|
|
fa-shredder unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/shredder
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ShuttleVan">
|
|
<summary>
|
|
fa-shuttle-van unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/shuttle-van
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Shuttlecock">
|
|
<summary>
|
|
fa-shuttlecock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/shuttlecock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sigma">
|
|
<summary>
|
|
fa-sigma unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sigma
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sign">
|
|
<summary>
|
|
fa-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignIn">
|
|
<summary>
|
|
fa-sign-in unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sign-in
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignInAlt">
|
|
<summary>
|
|
fa-sign-in-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sign-in-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignLanguage">
|
|
<summary>
|
|
fa-sign-language unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sign-language
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignOut">
|
|
<summary>
|
|
fa-sign-out unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sign-out
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignOutAlt">
|
|
<summary>
|
|
fa-sign-out-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sign-out-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Signal">
|
|
<summary>
|
|
fa-signal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Signal1">
|
|
<summary>
|
|
fa-signal-1 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-1
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Signal2">
|
|
<summary>
|
|
fa-signal-2 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-2
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Signal3">
|
|
<summary>
|
|
fa-signal-3 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-3
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Signal4">
|
|
<summary>
|
|
fa-signal-4 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-4
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignalAlt">
|
|
<summary>
|
|
fa-signal-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignalAlt1">
|
|
<summary>
|
|
fa-signal-alt-1 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-alt-1
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignalAlt2">
|
|
<summary>
|
|
fa-signal-alt-2 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-alt-2
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignalAlt3">
|
|
<summary>
|
|
fa-signal-alt-3 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-alt-3
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignalAltSlash">
|
|
<summary>
|
|
fa-signal-alt-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-alt-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SignalSlash">
|
|
<summary>
|
|
fa-signal-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/signal-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Signature">
|
|
<summary>
|
|
fa-signature unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/signature
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Simplybuilt">
|
|
<summary>
|
|
fa-simplybuilt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/simplybuilt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sistrix">
|
|
<summary>
|
|
fa-sistrix unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/sistrix
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sitemap">
|
|
<summary>
|
|
fa-sitemap unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sitemap
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sith">
|
|
<summary>
|
|
fa-sith unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/sith
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Skeleton">
|
|
<summary>
|
|
fa-skeleton unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/skeleton
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Skull">
|
|
<summary>
|
|
fa-skull unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/skull
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SkullCrossbones">
|
|
<summary>
|
|
fa-skull-crossbones unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/skull-crossbones
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Skyatlas">
|
|
<summary>
|
|
fa-skyatlas unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/skyatlas
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Skype">
|
|
<summary>
|
|
fa-skype unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/skype
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Slack">
|
|
<summary>
|
|
fa-slack unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/slack
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SlackHash">
|
|
<summary>
|
|
fa-slack-hash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/slack-hash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Slash">
|
|
<summary>
|
|
fa-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SlidersH">
|
|
<summary>
|
|
fa-sliders-h unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sliders-h
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SlidersHSquare">
|
|
<summary>
|
|
fa-sliders-h-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sliders-h-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SlidersV">
|
|
<summary>
|
|
fa-sliders-v unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sliders-v
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SlidersVSquare">
|
|
<summary>
|
|
fa-sliders-v-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sliders-v-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Slideshare">
|
|
<summary>
|
|
fa-slideshare unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/slideshare
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Smile">
|
|
<summary>
|
|
fa-smile unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/smile
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SmileBeam">
|
|
<summary>
|
|
fa-smile-beam unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/smile-beam
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SmilePlus">
|
|
<summary>
|
|
fa-smile-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/smile-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SmileWink">
|
|
<summary>
|
|
fa-smile-wink unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/smile-wink
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Smog">
|
|
<summary>
|
|
fa-smog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/smog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Smoke">
|
|
<summary>
|
|
fa-smoke unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/smoke
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Smoking">
|
|
<summary>
|
|
fa-smoking unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/smoking
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SmokingBan">
|
|
<summary>
|
|
fa-smoking-ban unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/smoking-ban
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Snake">
|
|
<summary>
|
|
fa-snake unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/snake
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Snapchat">
|
|
<summary>
|
|
fa-snapchat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/snapchat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SnapchatGhost">
|
|
<summary>
|
|
fa-snapchat-ghost unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/snapchat-ghost
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SnapchatSquare">
|
|
<summary>
|
|
fa-snapchat-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/snapchat-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SnowBlowing">
|
|
<summary>
|
|
fa-snow-blowing unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/snow-blowing
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Snowflake">
|
|
<summary>
|
|
fa-snowflake unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/snowflake
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Socks">
|
|
<summary>
|
|
fa-socks unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/socks
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SolarPanel">
|
|
<summary>
|
|
fa-solar-panel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/solar-panel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sort">
|
|
<summary>
|
|
fa-sort unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SortAlphaDown">
|
|
<summary>
|
|
fa-sort-alpha-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort-alpha-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SortAlphaUp">
|
|
<summary>
|
|
fa-sort-alpha-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort-alpha-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SortAmountDown">
|
|
<summary>
|
|
fa-sort-amount-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort-amount-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SortAmountUp">
|
|
<summary>
|
|
fa-sort-amount-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort-amount-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SortDown">
|
|
<summary>
|
|
fa-sort-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SortNumericDown">
|
|
<summary>
|
|
fa-sort-numeric-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort-numeric-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SortNumericUp">
|
|
<summary>
|
|
fa-sort-numeric-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort-numeric-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SortUp">
|
|
<summary>
|
|
fa-sort-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sort-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Soundcloud">
|
|
<summary>
|
|
fa-soundcloud unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/soundcloud
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Spa">
|
|
<summary>
|
|
fa-spa unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/spa
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SpaceShuttle">
|
|
<summary>
|
|
fa-space-shuttle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/space-shuttle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Spade">
|
|
<summary>
|
|
fa-spade unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/spade
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Speakap">
|
|
<summary>
|
|
fa-speakap unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/speakap
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Spider">
|
|
<summary>
|
|
fa-spider unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/spider
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SpiderBlackWidow">
|
|
<summary>
|
|
fa-spider-black-widow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/spider-black-widow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SpiderWeb">
|
|
<summary>
|
|
fa-spider-web unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/spider-web
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Spinner">
|
|
<summary>
|
|
fa-spinner unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/spinner
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SpinnerThird">
|
|
<summary>
|
|
fa-spinner-third unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/spinner-third
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Splotch">
|
|
<summary>
|
|
fa-splotch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/splotch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Spotify">
|
|
<summary>
|
|
fa-spotify unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/spotify
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SprayCan">
|
|
<summary>
|
|
fa-spray-can unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/spray-can
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Square">
|
|
<summary>
|
|
fa-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SquareFull">
|
|
<summary>
|
|
fa-square-full unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/square-full
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SquareRoot">
|
|
<summary>
|
|
fa-square-root unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/square-root
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SquareRootAlt">
|
|
<summary>
|
|
fa-square-root-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/square-root-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Squarespace">
|
|
<summary>
|
|
fa-squarespace unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/squarespace
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Squirrel">
|
|
<summary>
|
|
fa-squirrel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/squirrel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StackExchange">
|
|
<summary>
|
|
fa-stack-exchange unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/stack-exchange
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StackOverflow">
|
|
<summary>
|
|
fa-stack-overflow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/stack-overflow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Staff">
|
|
<summary>
|
|
fa-staff unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/staff
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stamp">
|
|
<summary>
|
|
fa-stamp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/stamp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Star">
|
|
<summary>
|
|
fa-star unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/star
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StarAndCrescent">
|
|
<summary>
|
|
fa-star-and-crescent unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/star-and-crescent
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StarExclamation">
|
|
<summary>
|
|
fa-star-exclamation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/star-exclamation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StarHalf">
|
|
<summary>
|
|
fa-star-half unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/star-half
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StarHalfAlt">
|
|
<summary>
|
|
fa-star-half-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/star-half-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StarOfDavid">
|
|
<summary>
|
|
fa-star-of-david unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/star-of-david
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StarOfLife">
|
|
<summary>
|
|
fa-star-of-life unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/star-of-life
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stars">
|
|
<summary>
|
|
fa-stars unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/stars
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Staylinked">
|
|
<summary>
|
|
fa-staylinked unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/staylinked
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Steam">
|
|
<summary>
|
|
fa-steam unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/steam
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SteamSquare">
|
|
<summary>
|
|
fa-steam-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/steam-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SteamSymbol">
|
|
<summary>
|
|
fa-steam-symbol unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/steam-symbol
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SteeringWheel">
|
|
<summary>
|
|
fa-steering-wheel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/steering-wheel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StepBackward">
|
|
<summary>
|
|
fa-step-backward unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/step-backward
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StepForward">
|
|
<summary>
|
|
fa-step-forward unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/step-forward
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stethoscope">
|
|
<summary>
|
|
fa-stethoscope unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/stethoscope
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StickerMule">
|
|
<summary>
|
|
fa-sticker-mule unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/sticker-mule
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StickyNote">
|
|
<summary>
|
|
fa-sticky-note unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sticky-note
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stomach">
|
|
<summary>
|
|
fa-stomach unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/stomach
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stop">
|
|
<summary>
|
|
fa-stop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/stop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StopCircle">
|
|
<summary>
|
|
fa-stop-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/stop-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stopwatch">
|
|
<summary>
|
|
fa-stopwatch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/stopwatch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Store">
|
|
<summary>
|
|
fa-store unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/store
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StoreAlt">
|
|
<summary>
|
|
fa-store-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/store-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Strava">
|
|
<summary>
|
|
fa-strava unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/strava
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stream">
|
|
<summary>
|
|
fa-stream unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/stream
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StreetView">
|
|
<summary>
|
|
fa-street-view unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/street-view
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Strikethrough">
|
|
<summary>
|
|
fa-strikethrough unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/strikethrough
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stripe">
|
|
<summary>
|
|
fa-stripe unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/stripe
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StripeS">
|
|
<summary>
|
|
fa-stripe-s unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/stripe-s
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stroopwafel">
|
|
<summary>
|
|
fa-stroopwafel unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/stroopwafel
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Studiovinari">
|
|
<summary>
|
|
fa-studiovinari unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/studiovinari
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Stumbleupon">
|
|
<summary>
|
|
fa-stumbleupon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/stumbleupon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.StumbleuponCircle">
|
|
<summary>
|
|
fa-stumbleupon-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/stumbleupon-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Subscript">
|
|
<summary>
|
|
fa-subscript unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/subscript
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Subway">
|
|
<summary>
|
|
fa-subway unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/subway
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Suitcase">
|
|
<summary>
|
|
fa-suitcase unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/suitcase
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SuitcaseRolling">
|
|
<summary>
|
|
fa-suitcase-rolling unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/suitcase-rolling
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sun">
|
|
<summary>
|
|
fa-sun unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sun
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SunCloud">
|
|
<summary>
|
|
fa-sun-cloud unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sun-cloud
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SunDust">
|
|
<summary>
|
|
fa-sun-dust unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sun-dust
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SunHaze">
|
|
<summary>
|
|
fa-sun-haze unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sun-haze
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sunrise">
|
|
<summary>
|
|
fa-sunrise unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sunrise
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sunset">
|
|
<summary>
|
|
fa-sunset unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sunset
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Superpowers">
|
|
<summary>
|
|
fa-superpowers unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/superpowers
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Superscript">
|
|
<summary>
|
|
fa-superscript unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/superscript
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Supple">
|
|
<summary>
|
|
fa-supple unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/supple
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Surprise">
|
|
<summary>
|
|
fa-surprise unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/surprise
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Swatchbook">
|
|
<summary>
|
|
fa-swatchbook unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/swatchbook
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Swimmer">
|
|
<summary>
|
|
fa-swimmer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/swimmer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SwimmingPool">
|
|
<summary>
|
|
fa-swimming-pool unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/swimming-pool
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sword">
|
|
<summary>
|
|
fa-sword unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/sword
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Swords">
|
|
<summary>
|
|
fa-swords unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/swords
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Synagogue">
|
|
<summary>
|
|
fa-synagogue unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/synagogue
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Sync">
|
|
<summary>
|
|
fa-sync unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sync
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.SyncAlt">
|
|
<summary>
|
|
fa-sync-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/sync-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Syringe">
|
|
<summary>
|
|
fa-syringe unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/syringe
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Table">
|
|
<summary>
|
|
fa-table unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/table
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TableTennis">
|
|
<summary>
|
|
fa-table-tennis unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/table-tennis
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tablet">
|
|
<summary>
|
|
fa-tablet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tablet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TabletAlt">
|
|
<summary>
|
|
fa-tablet-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tablet-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TabletAndroid">
|
|
<summary>
|
|
fa-tablet-android unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tablet-android
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TabletAndroidAlt">
|
|
<summary>
|
|
fa-tablet-android-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tablet-android-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TabletRugged">
|
|
<summary>
|
|
fa-tablet-rugged unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tablet-rugged
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tablets">
|
|
<summary>
|
|
fa-tablets unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tablets
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tachometer">
|
|
<summary>
|
|
fa-tachometer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerAlt">
|
|
<summary>
|
|
fa-tachometer-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerAltAverage">
|
|
<summary>
|
|
fa-tachometer-alt-average unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-alt-average
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerAltFast">
|
|
<summary>
|
|
fa-tachometer-alt-fast unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-alt-fast
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerAltFastest">
|
|
<summary>
|
|
fa-tachometer-alt-fastest unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-alt-fastest
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerAltSlow">
|
|
<summary>
|
|
fa-tachometer-alt-slow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-alt-slow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerAltSlowest">
|
|
<summary>
|
|
fa-tachometer-alt-slowest unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-alt-slowest
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerAverage">
|
|
<summary>
|
|
fa-tachometer-average unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-average
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerFast">
|
|
<summary>
|
|
fa-tachometer-fast unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-fast
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerFastest">
|
|
<summary>
|
|
fa-tachometer-fastest unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-fastest
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerSlow">
|
|
<summary>
|
|
fa-tachometer-slow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-slow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TachometerSlowest">
|
|
<summary>
|
|
fa-tachometer-slowest unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tachometer-slowest
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tag">
|
|
<summary>
|
|
fa-tag unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tag
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tags">
|
|
<summary>
|
|
fa-tags unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tags
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tally">
|
|
<summary>
|
|
fa-tally unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tally
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tape">
|
|
<summary>
|
|
fa-tape unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tape
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tasks">
|
|
<summary>
|
|
fa-tasks unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tasks
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Taxi">
|
|
<summary>
|
|
fa-taxi unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/taxi
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Teamspeak">
|
|
<summary>
|
|
fa-teamspeak unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/teamspeak
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Teeth">
|
|
<summary>
|
|
fa-teeth unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/teeth
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TeethOpen">
|
|
<summary>
|
|
fa-teeth-open unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/teeth-open
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Telegram">
|
|
<summary>
|
|
fa-telegram unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/telegram
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TelegramPlane">
|
|
<summary>
|
|
fa-telegram-plane unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/telegram-plane
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TemperatureFrigid">
|
|
<summary>
|
|
fa-temperature-frigid unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/temperature-frigid
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TemperatureHigh">
|
|
<summary>
|
|
fa-temperature-high unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/temperature-high
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TemperatureHot">
|
|
<summary>
|
|
fa-temperature-hot unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/temperature-hot
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TemperatureLow">
|
|
<summary>
|
|
fa-temperature-low unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/temperature-low
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TencentWeibo">
|
|
<summary>
|
|
fa-tencent-weibo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/tencent-weibo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TennisBall">
|
|
<summary>
|
|
fa-tennis-ball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tennis-ball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Terminal">
|
|
<summary>
|
|
fa-terminal unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/terminal
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TextHeight">
|
|
<summary>
|
|
fa-text-height unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/text-height
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TextWidth">
|
|
<summary>
|
|
fa-text-width unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/text-width
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Th">
|
|
<summary>
|
|
fa-th unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/th
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThLarge">
|
|
<summary>
|
|
fa-th-large unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/th-large
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThList">
|
|
<summary>
|
|
fa-th-list unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/th-list
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TheRedYeti">
|
|
<summary>
|
|
fa-the-red-yeti unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/the-red-yeti
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TheaterMasks">
|
|
<summary>
|
|
fa-theater-masks unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/theater-masks
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Themeco">
|
|
<summary>
|
|
fa-themeco unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/themeco
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Themeisle">
|
|
<summary>
|
|
fa-themeisle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/themeisle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Thermometer">
|
|
<summary>
|
|
fa-thermometer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thermometer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThermometerEmpty">
|
|
<summary>
|
|
fa-thermometer-empty unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thermometer-empty
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThermometerFull">
|
|
<summary>
|
|
fa-thermometer-full unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thermometer-full
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThermometerHalf">
|
|
<summary>
|
|
fa-thermometer-half unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thermometer-half
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThermometerQuarter">
|
|
<summary>
|
|
fa-thermometer-quarter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thermometer-quarter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThermometerThreeQuarters">
|
|
<summary>
|
|
fa-thermometer-three-quarters unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thermometer-three-quarters
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Theta">
|
|
<summary>
|
|
fa-theta unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/theta
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThinkPeaks">
|
|
<summary>
|
|
fa-think-peaks unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/think-peaks
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThumbsDown">
|
|
<summary>
|
|
fa-thumbs-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thumbs-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThumbsUp">
|
|
<summary>
|
|
fa-thumbs-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thumbs-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Thumbtack">
|
|
<summary>
|
|
fa-thumbtack unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/thumbtack
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Thunderstorm">
|
|
<summary>
|
|
fa-thunderstorm unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/thunderstorm
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThunderstormMoon">
|
|
<summary>
|
|
fa-thunderstorm-moon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/thunderstorm-moon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ThunderstormSun">
|
|
<summary>
|
|
fa-thunderstorm-sun unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/thunderstorm-sun
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ticket">
|
|
<summary>
|
|
fa-ticket unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/ticket
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TicketAlt">
|
|
<summary>
|
|
fa-ticket-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/ticket-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tilde">
|
|
<summary>
|
|
fa-tilde unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tilde
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Times">
|
|
<summary>
|
|
fa-times unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/times
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TimesCircle">
|
|
<summary>
|
|
fa-times-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/times-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TimesHexagon">
|
|
<summary>
|
|
fa-times-hexagon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/times-hexagon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TimesOctagon">
|
|
<summary>
|
|
fa-times-octagon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/times-octagon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TimesSquare">
|
|
<summary>
|
|
fa-times-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/times-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tint">
|
|
<summary>
|
|
fa-tint unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tint
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TintSlash">
|
|
<summary>
|
|
fa-tint-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tint-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tire">
|
|
<summary>
|
|
fa-tire unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tire
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TireFlat">
|
|
<summary>
|
|
fa-tire-flat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tire-flat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TirePressureWarning">
|
|
<summary>
|
|
fa-tire-pressure-warning unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tire-pressure-warning
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TireRugged">
|
|
<summary>
|
|
fa-tire-rugged unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tire-rugged
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tired">
|
|
<summary>
|
|
fa-tired unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tired
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ToggleOff">
|
|
<summary>
|
|
fa-toggle-off unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/toggle-off
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ToggleOn">
|
|
<summary>
|
|
fa-toggle-on unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/toggle-on
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ToiletPaper">
|
|
<summary>
|
|
fa-toilet-paper unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/toilet-paper
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ToiletPaperAlt">
|
|
<summary>
|
|
fa-toilet-paper-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/toilet-paper-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tombstone">
|
|
<summary>
|
|
fa-tombstone unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tombstone
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TombstoneAlt">
|
|
<summary>
|
|
fa-tombstone-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tombstone-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Toolbox">
|
|
<summary>
|
|
fa-toolbox unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/toolbox
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tooth">
|
|
<summary>
|
|
fa-tooth unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tooth
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Toothbrush">
|
|
<summary>
|
|
fa-toothbrush unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/toothbrush
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Torah">
|
|
<summary>
|
|
fa-torah unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/torah
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ToriiGate">
|
|
<summary>
|
|
fa-torii-gate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/torii-gate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tornado">
|
|
<summary>
|
|
fa-tornado unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tornado
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tractor">
|
|
<summary>
|
|
fa-tractor unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tractor
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TradeFederation">
|
|
<summary>
|
|
fa-trade-federation unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/trade-federation
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Trademark">
|
|
<summary>
|
|
fa-trademark unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/trademark
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TrafficCone">
|
|
<summary>
|
|
fa-traffic-cone unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/traffic-cone
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TrafficLight">
|
|
<summary>
|
|
fa-traffic-light unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/traffic-light
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TrafficLightGo">
|
|
<summary>
|
|
fa-traffic-light-go unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/traffic-light-go
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TrafficLightSlow">
|
|
<summary>
|
|
fa-traffic-light-slow unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/traffic-light-slow
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TrafficLightStop">
|
|
<summary>
|
|
fa-traffic-light-stop unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/traffic-light-stop
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Train">
|
|
<summary>
|
|
fa-train unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/train
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Transgender">
|
|
<summary>
|
|
fa-transgender unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/transgender
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TransgenderAlt">
|
|
<summary>
|
|
fa-transgender-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/transgender-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Trash">
|
|
<summary>
|
|
fa-trash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/trash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TrashAlt">
|
|
<summary>
|
|
fa-trash-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/trash-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TreasureChest">
|
|
<summary>
|
|
fa-treasure-chest unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/treasure-chest
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tree">
|
|
<summary>
|
|
fa-tree unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tree
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TreeAlt">
|
|
<summary>
|
|
fa-tree-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tree-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Trees">
|
|
<summary>
|
|
fa-trees unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/trees
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Trello">
|
|
<summary>
|
|
fa-trello unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/trello
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Triangle">
|
|
<summary>
|
|
fa-triangle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/triangle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tripadvisor">
|
|
<summary>
|
|
fa-tripadvisor unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/tripadvisor
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Trophy">
|
|
<summary>
|
|
fa-trophy unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/trophy
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TrophyAlt">
|
|
<summary>
|
|
fa-trophy-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/trophy-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Truck">
|
|
<summary>
|
|
fa-truck unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/truck
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TruckContainer">
|
|
<summary>
|
|
fa-truck-container unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/truck-container
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TruckCouch">
|
|
<summary>
|
|
fa-truck-couch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/truck-couch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TruckLoading">
|
|
<summary>
|
|
fa-truck-loading unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/truck-loading
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TruckMonster">
|
|
<summary>
|
|
fa-truck-monster unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/truck-monster
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TruckMoving">
|
|
<summary>
|
|
fa-truck-moving unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/truck-moving
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TruckPickup">
|
|
<summary>
|
|
fa-truck-pickup unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/truck-pickup
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TruckRamp">
|
|
<summary>
|
|
fa-truck-ramp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/truck-ramp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tshirt">
|
|
<summary>
|
|
fa-tshirt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tshirt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tty">
|
|
<summary>
|
|
fa-tty unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tty
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tumblr">
|
|
<summary>
|
|
fa-tumblr unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/tumblr
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TumblrSquare">
|
|
<summary>
|
|
fa-tumblr-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/tumblr-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Turkey">
|
|
<summary>
|
|
fa-turkey unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/turkey
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Turtle">
|
|
<summary>
|
|
fa-turtle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/turtle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Tv">
|
|
<summary>
|
|
fa-tv unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/tv
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TvRetro">
|
|
<summary>
|
|
fa-tv-retro unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/tv-retro
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Twitch">
|
|
<summary>
|
|
fa-twitch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/twitch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Twitter">
|
|
<summary>
|
|
fa-twitter unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/twitter
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.TwitterSquare">
|
|
<summary>
|
|
fa-twitter-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/twitter-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Typo3">
|
|
<summary>
|
|
fa-typo3 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/typo3
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Uber">
|
|
<summary>
|
|
fa-uber unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/uber
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Uikit">
|
|
<summary>
|
|
fa-uikit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/uikit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Umbrella">
|
|
<summary>
|
|
fa-umbrella unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/umbrella
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UmbrellaBeach">
|
|
<summary>
|
|
fa-umbrella-beach unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/umbrella-beach
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Underline">
|
|
<summary>
|
|
fa-underline unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/underline
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Undo">
|
|
<summary>
|
|
fa-undo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/undo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UndoAlt">
|
|
<summary>
|
|
fa-undo-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/undo-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Unicorn">
|
|
<summary>
|
|
fa-unicorn unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/unicorn
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Union">
|
|
<summary>
|
|
fa-union unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/union
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Uniregistry">
|
|
<summary>
|
|
fa-uniregistry unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/uniregistry
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UniversalAccess">
|
|
<summary>
|
|
fa-universal-access unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/universal-access
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.University">
|
|
<summary>
|
|
fa-university unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/university
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Unlink">
|
|
<summary>
|
|
fa-unlink unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/unlink
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Unlock">
|
|
<summary>
|
|
fa-unlock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/unlock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UnlockAlt">
|
|
<summary>
|
|
fa-unlock-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/unlock-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Untappd">
|
|
<summary>
|
|
fa-untappd unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/untappd
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Upload">
|
|
<summary>
|
|
fa-upload unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/upload
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Usb">
|
|
<summary>
|
|
fa-usb unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/usb
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UsdCircle">
|
|
<summary>
|
|
fa-usd-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/usd-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UsdSquare">
|
|
<summary>
|
|
fa-usd-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/usd-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.User">
|
|
<summary>
|
|
fa-user unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserAlt">
|
|
<summary>
|
|
fa-user-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserAltSlash">
|
|
<summary>
|
|
fa-user-alt-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-alt-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserAstronaut">
|
|
<summary>
|
|
fa-user-astronaut unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-astronaut
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserChart">
|
|
<summary>
|
|
fa-user-chart unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-chart
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserCheck">
|
|
<summary>
|
|
fa-user-check unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-check
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserCircle">
|
|
<summary>
|
|
fa-user-circle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-circle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserClock">
|
|
<summary>
|
|
fa-user-clock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-clock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserCog">
|
|
<summary>
|
|
fa-user-cog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-cog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserCrown">
|
|
<summary>
|
|
fa-user-crown unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-crown
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserEdit">
|
|
<summary>
|
|
fa-user-edit unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-edit
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserFriends">
|
|
<summary>
|
|
fa-user-friends unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-friends
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserGraduate">
|
|
<summary>
|
|
fa-user-graduate unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-graduate
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserInjured">
|
|
<summary>
|
|
fa-user-injured unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-injured
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserLock">
|
|
<summary>
|
|
fa-user-lock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-lock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserMd">
|
|
<summary>
|
|
fa-user-md unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-md
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserMinus">
|
|
<summary>
|
|
fa-user-minus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-minus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserNinja">
|
|
<summary>
|
|
fa-user-ninja unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-ninja
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserPlus">
|
|
<summary>
|
|
fa-user-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserSecret">
|
|
<summary>
|
|
fa-user-secret unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-secret
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserShield">
|
|
<summary>
|
|
fa-user-shield unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-shield
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserSlash">
|
|
<summary>
|
|
fa-user-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserTag">
|
|
<summary>
|
|
fa-user-tag unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-tag
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserTie">
|
|
<summary>
|
|
fa-user-tie unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-tie
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UserTimes">
|
|
<summary>
|
|
fa-user-times unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/user-times
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Users">
|
|
<summary>
|
|
fa-users unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/users
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UsersClass">
|
|
<summary>
|
|
fa-users-class unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/users-class
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UsersCog">
|
|
<summary>
|
|
fa-users-cog unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/users-cog
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UsersCrown">
|
|
<summary>
|
|
fa-users-crown unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/users-crown
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Ussunnah">
|
|
<summary>
|
|
fa-ussunnah unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/ussunnah
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UtensilFork">
|
|
<summary>
|
|
fa-utensil-fork unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/utensil-fork
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UtensilKnife">
|
|
<summary>
|
|
fa-utensil-knife unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/utensil-knife
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UtensilSpoon">
|
|
<summary>
|
|
fa-utensil-spoon unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/utensil-spoon
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Utensils">
|
|
<summary>
|
|
fa-utensils unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/utensils
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.UtensilsAlt">
|
|
<summary>
|
|
fa-utensils-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/utensils-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vaadin">
|
|
<summary>
|
|
fa-vaadin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/vaadin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ValueAbsolute">
|
|
<summary>
|
|
fa-value-absolute unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/value-absolute
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VectorSquare">
|
|
<summary>
|
|
fa-vector-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/vector-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Venus">
|
|
<summary>
|
|
fa-venus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/venus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VenusDouble">
|
|
<summary>
|
|
fa-venus-double unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/venus-double
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VenusMars">
|
|
<summary>
|
|
fa-venus-mars unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/venus-mars
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Viacoin">
|
|
<summary>
|
|
fa-viacoin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/viacoin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Viadeo">
|
|
<summary>
|
|
fa-viadeo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/viadeo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.ViadeoSquare">
|
|
<summary>
|
|
fa-viadeo-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/viadeo-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vial">
|
|
<summary>
|
|
fa-vial unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/vial
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vials">
|
|
<summary>
|
|
fa-vials unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/vials
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Viber">
|
|
<summary>
|
|
fa-viber unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/viber
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Video">
|
|
<summary>
|
|
fa-video unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/video
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VideoPlus">
|
|
<summary>
|
|
fa-video-plus unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/video-plus
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VideoSlash">
|
|
<summary>
|
|
fa-video-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/video-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vihara">
|
|
<summary>
|
|
fa-vihara unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/vihara
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vimeo">
|
|
<summary>
|
|
fa-vimeo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/vimeo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VimeoSquare">
|
|
<summary>
|
|
fa-vimeo-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/vimeo-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VimeoV">
|
|
<summary>
|
|
fa-vimeo-v unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/vimeo-v
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vine">
|
|
<summary>
|
|
fa-vine unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/vine
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vk">
|
|
<summary>
|
|
fa-vk unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/vk
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vnv">
|
|
<summary>
|
|
fa-vnv unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/vnv
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Volcano">
|
|
<summary>
|
|
fa-volcano unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/volcano
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VolleyballBall">
|
|
<summary>
|
|
fa-volleyball-ball unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/volleyball-ball
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Volume">
|
|
<summary>
|
|
fa-volume unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/volume
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VolumeDown">
|
|
<summary>
|
|
fa-volume-down unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/volume-down
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VolumeMute">
|
|
<summary>
|
|
fa-volume-mute unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/volume-mute
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VolumeOff">
|
|
<summary>
|
|
fa-volume-off unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/volume-off
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VolumeSlash">
|
|
<summary>
|
|
fa-volume-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/volume-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VolumeUp">
|
|
<summary>
|
|
fa-volume-up unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/volume-up
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VoteNay">
|
|
<summary>
|
|
fa-vote-nay unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/vote-nay
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VoteYea">
|
|
<summary>
|
|
fa-vote-yea unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/vote-yea
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.VrCardboard">
|
|
<summary>
|
|
fa-vr-cardboard unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/vr-cardboard
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Vuejs">
|
|
<summary>
|
|
fa-vuejs unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/vuejs
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Walking">
|
|
<summary>
|
|
fa-walking unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/walking
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wallet">
|
|
<summary>
|
|
fa-wallet unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/wallet
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wand">
|
|
<summary>
|
|
fa-wand unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/wand
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WandMagic">
|
|
<summary>
|
|
fa-wand-magic unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/wand-magic
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Warehouse">
|
|
<summary>
|
|
fa-warehouse unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/warehouse
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WarehouseAlt">
|
|
<summary>
|
|
fa-warehouse-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/warehouse-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Watch">
|
|
<summary>
|
|
fa-watch unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/watch
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WatchFitness">
|
|
<summary>
|
|
fa-watch-fitness unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/watch-fitness
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Water">
|
|
<summary>
|
|
fa-water unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/water
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WaterLower">
|
|
<summary>
|
|
fa-water-lower unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/water-lower
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WaterRise">
|
|
<summary>
|
|
fa-water-rise unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/water-rise
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Weebly">
|
|
<summary>
|
|
fa-weebly unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/weebly
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Weibo">
|
|
<summary>
|
|
fa-weibo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/weibo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Weight">
|
|
<summary>
|
|
fa-weight unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/weight
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WeightHanging">
|
|
<summary>
|
|
fa-weight-hanging unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/weight-hanging
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Weixin">
|
|
<summary>
|
|
fa-weixin unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/weixin
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Whale">
|
|
<summary>
|
|
fa-whale unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/whale
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Whatsapp">
|
|
<summary>
|
|
fa-whatsapp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/whatsapp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WhatsappSquare">
|
|
<summary>
|
|
fa-whatsapp-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/whatsapp-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wheat">
|
|
<summary>
|
|
fa-wheat unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/wheat
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wheelchair">
|
|
<summary>
|
|
fa-wheelchair unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/wheelchair
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Whistle">
|
|
<summary>
|
|
fa-whistle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/whistle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Whmcs">
|
|
<summary>
|
|
fa-whmcs unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/whmcs
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wifi">
|
|
<summary>
|
|
fa-wifi unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/wifi
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wifi1">
|
|
<summary>
|
|
fa-wifi-1 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/wifi-1
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wifi2">
|
|
<summary>
|
|
fa-wifi-2 unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/wifi-2
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WifiSlash">
|
|
<summary>
|
|
fa-wifi-slash unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/wifi-slash
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WikipediaW">
|
|
<summary>
|
|
fa-wikipedia-w unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wikipedia-w
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wind">
|
|
<summary>
|
|
fa-wind unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/wind
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WindWarning">
|
|
<summary>
|
|
fa-wind-warning unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/wind-warning
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Window">
|
|
<summary>
|
|
fa-window unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/window
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WindowAlt">
|
|
<summary>
|
|
fa-window-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/window-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WindowClose">
|
|
<summary>
|
|
fa-window-close unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/window-close
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WindowMaximize">
|
|
<summary>
|
|
fa-window-maximize unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/window-maximize
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WindowMinimize">
|
|
<summary>
|
|
fa-window-minimize unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/window-minimize
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WindowRestore">
|
|
<summary>
|
|
fa-window-restore unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular, Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/window-restore
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Windows">
|
|
<summary>
|
|
fa-windows unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/windows
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Windsock">
|
|
<summary>
|
|
fa-windsock unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid (Pro)
|
|
<para/>
|
|
See https://fontawesome.com/icons/windsock
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WineBottle">
|
|
<summary>
|
|
fa-wine-bottle unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/wine-bottle
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WineGlass">
|
|
<summary>
|
|
fa-wine-glass unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/wine-glass
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WineGlassAlt">
|
|
<summary>
|
|
fa-wine-glass-alt unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/wine-glass-alt
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wix">
|
|
<summary>
|
|
fa-wix unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wix
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WizardsOfTheCoast">
|
|
<summary>
|
|
fa-wizards-of-the-coast unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wizards-of-the-coast
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WolfPackBattalion">
|
|
<summary>
|
|
fa-wolf-pack-battalion unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wolf-pack-battalion
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WonSign">
|
|
<summary>
|
|
fa-won-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/won-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wordpress">
|
|
<summary>
|
|
fa-wordpress unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wordpress
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.WordpressSimple">
|
|
<summary>
|
|
fa-wordpress-simple unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wordpress-simple
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wpbeginner">
|
|
<summary>
|
|
fa-wpbeginner unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wpbeginner
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wpexplorer">
|
|
<summary>
|
|
fa-wpexplorer unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wpexplorer
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wpforms">
|
|
<summary>
|
|
fa-wpforms unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wpforms
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wpressr">
|
|
<summary>
|
|
fa-wpressr unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/wpressr
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Wrench">
|
|
<summary>
|
|
fa-wrench unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/wrench
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.XRay">
|
|
<summary>
|
|
fa-x-ray unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/x-ray
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Xbox">
|
|
<summary>
|
|
fa-xbox unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/xbox
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Xing">
|
|
<summary>
|
|
fa-xing unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/xing
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.XingSquare">
|
|
<summary>
|
|
fa-xing-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/xing-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.YCombinator">
|
|
<summary>
|
|
fa-y-combinator unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/y-combinator
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Yahoo">
|
|
<summary>
|
|
fa-yahoo unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/yahoo
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Yandex">
|
|
<summary>
|
|
fa-yandex unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/yandex
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.YandexInternational">
|
|
<summary>
|
|
fa-yandex-international unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/yandex-international
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Yelp">
|
|
<summary>
|
|
fa-yelp unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/yelp
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.YenSign">
|
|
<summary>
|
|
fa-yen-sign unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/yen-sign
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.YinYang">
|
|
<summary>
|
|
fa-yin-yang unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Light (Pro), Regular (Pro), Solid
|
|
<para/>
|
|
See https://fontawesome.com/icons/yin-yang
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Yoast">
|
|
<summary>
|
|
fa-yoast unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/yoast
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Youtube">
|
|
<summary>
|
|
fa-youtube unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/youtube
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.YoutubeSquare">
|
|
<summary>
|
|
fa-youtube-square unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/youtube-square
|
|
</summary>
|
|
</member>
|
|
<member name="F:FontAwesome.FontAwesomeIcons.Zhihu">
|
|
<summary>
|
|
fa-zhihu unicode value.
|
|
<para/>
|
|
This icon supports the following styles: Brands
|
|
<para/>
|
|
See https://fontawesome.com/icons/zhihu
|
|
</summary>
|
|
</member>
|
|
</members>
|
|
</doc>
|
|
|