Class IgbImageCapturedEventArgs
Inheritance
System.Object
IgbImageCapturedEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbImageCapturedEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbImageCapturedEventArgs()
Declaration
public IgbImageCapturedEventArgs()
Properties
Base64Data
Gets the captured image as Base64.
Declaration
public string Base64Data { get; protected set; }
Property Value
| Type |
Description |
| System.String |
|
Image
Declaration
public object Image { get; protected set; }
Property Value
| Type |
Description |
| System.Object |
|
ImageScript
Provides a means of setting Image in the JavaScript environment.
Declaration
public string ImageScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Settings
Gets the settings used to capture the image.
Declaration
public IgbCaptureImageSettings Settings { get; protected set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements