Class AttachPanel
Definition
- Namespace:
- Tizen.Applications.AttachPanel
- Assembly:
- Tizen.Applications.AttachPanel.dll
Represents the immutable class for the attach panel.
public class AttachPanel
- Inheritance
-
objectAttachPanel
Constructors
View SourceAttachPanel(Conformant)
Represents the immutable class for the attach panel.
Declaration
public AttachPanel(Conformant conformant)
Parameters
Type | Name | Description |
---|---|---|
Conformant | conformant | The caller's conformant. |
Exceptions
Type | Condition |
---|---|
System.OutOfMemoryException | Thrown when an attempt to allocate the memory fails. |
System.InvalidOperationException | Thrown when the AttachPanel already exists or the |
AttachPanel(EvasObject)
Represents the immutable class for the attach panel.
Declaration
public AttachPanel(EvasObject conformant)
Parameters
Type | Name | Description |
---|---|---|
EvasObject | conformant | The caller's conformant. |
Exceptions
Type | Condition |
---|---|
System.OutOfMemoryException | Thrown when an attempt to allocate the memory fails. |
System.InvalidOperationException | Thrown when the AttachPanel already exists or the |
Properties
View SourceState
Gets the state of the AttachPanel.
Declaration
public StateType State { get; }
Property Value
Type | Description |
---|---|
StateType | The AttachPanel window state. |
Visible
Gets the value that indicates whether the AttachPanel is visible.
Declaration
public bool Visible { get; }
Property Value
Type | Description |
---|---|
bool | Visible value of the AttachPanel state. |
Methods
View SourceAddCategory(ContentCategory, Bundle)
Adds a content category in the AttachPanel.
Declaration
public void AddCategory(ContentCategory category, Bundle extraData)
Parameters
Type | Name | Description |
---|---|---|
ContentCategory | category | The ContentCategory to be added in the AttachPanel. |
Bundle | extraData | The AttachPanel sends some information using the Bundle. |
Remarks
The caller application has to check the return value of this function. Content categories will be shown as the sequence of using AddCategory. Some contents need time to load it all. So, it is needed to use this before the mainloop of the Show. Privileges, http://tizen.org/privilege/mediastorage, for using Image or Camera. http://tizen.org/privilege/camera, for using Camera or TakePicture. http://tizen.org/privilege/recorder, for using Voice. http://tizen.org/privilege/appmanager.launch, for adding content categories on the More tab. http://tizen.org/feature/camera, for using Camera or TakePicture. http://tizen.org/feature/microphone, for using Voice. Deliver more information to the callee with a bundle if you need. http://tizen.org/appcontrol/data/total_count http://tizen.org/appcontrol/data/total_size
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | Thrown when the |
System.UnauthorizedAccessException | Thrown when the application does not have the privilege to access this method. |
System.NotSupportedException | Thrown when the device does not support the |
System.InvalidOperationException | Thrown when the AttachPanel is not created yet or is already destroyed. |
~AttachPanel()
A destructor which deallocates the attach panel resources.
Declaration
protected ~AttachPanel()
Hide()
Hides the attach panel with the animations.
Declaration
public void Hide()
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | Thrown when the AttachPanel is destroyed. |
Hide(bool)
Hides the attach panel and selects whether or not to animate.
Declaration
public void Hide(bool animation)
Parameters
Type | Name | Description |
---|---|---|
bool | animation | A flag which turns on or turns off the animation while the attach panel is hiding. |
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | Thrown when the AttachPanel is destroyed. |
RemoveCategory(ContentCategory)
Removes the ContentCategory from the AttachPanel.
Declaration
public void RemoveCategory(ContentCategory category)
Parameters
Type | Name | Description |
---|---|---|
ContentCategory | category | The ContentCategory to be added in the AttachPanel. |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | Thrown when the |
System.InvalidOperationException | Thrown when the AttachPanel is not created yet or is already destroyed. |
SetExtraData(ContentCategory, Bundle)
Sets the extraData to be sent to the ContentCategory using a Bundle.
Declaration
public void SetExtraData(ContentCategory category, Bundle extraData)
Parameters
Type | Name | Description |
---|---|---|
ContentCategory | category | The ContentCategory that some information is to be set, in the AttachPanel. |
Bundle | extraData | The AttachPanel sends some information using a Bundle. |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | Thrown when the |
System.InvalidOperationException | Thrown when the AttachPanel is destroyed. |
System.OutOfMemoryException | Thrown when an attempt to allocate the memory fails. |
Show()
Shows the attach panel with the animations.
Declaration
public void Show()
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | Thrown when the AttachPanel is destroyed. |
Show(bool)
Shows the attach panel and selects whether or not to animate.
Declaration
public void Show(bool animation)
Parameters
Type | Name | Description |
---|---|---|
bool | animation | A flag which turns on or turns off the animation while the attach panel is showing. |
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | Thrown when the AttachPanel is destroyed. |
Events
View SourceEventChanged
Occurs when the reserved events are published from the panel-side.
Declaration
public event EventHandler<StateEventArgs> EventChanged
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><StateEventArgs> |
ResultCallback
Occurs when a user selects and confirms something to attach in the AttachPanel.
Declaration
public event EventHandler<ResultEventArgs> ResultCallback
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><ResultEventArgs> |