Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
- API Level:
- 3
BaseHandle is a handle to an internal Dali resource.
public class BaseHandle : Element, INotifyPropertyChanged, IDynamicResourceHandler, IElement, INameScope, IElementController, IDisposable
- Inheritance
-
System.Object
Tizen.NUI.Binding.Element
BaseHandle
- Derived
-
Tizen.NUI.Accessibility.AccessibilityManager
Tizen.NUI.AutofillContainer
Tizen.NUI.Capture
Tizen.NUI.Clipboard
Tizen.NUI.EncodedImageBuffer
Tizen.NUI.FrameBuffer
Tizen.NUI.GestureDetector
Tizen.NUI.GLWindow
Tizen.NUI.ImageUrl
Tizen.NUI.ParticleSystem.ParticleEmitter
Tizen.NUI.ParticleSystem.ParticleModifier`1
Tizen.NUI.ParticleSystem.ParticleSource`1
Tizen.NUI.Physics2D.PhysicsActor
Tizen.NUI.Physics2D.PhysicsAdaptor
Tizen.NUI.PixelBuffer
Tizen.NUI.PixelData
Tizen.NUI.RenderTaskList
Tizen.NUI.Scene3D.Material
Tizen.NUI.Scene3D.ModelPrimitive
Tizen.NUI.Scene3D.MotionData
Tizen.NUI.Scene3D.MotionIndex
Tizen.NUI.Scene3D.MotionValue
Tizen.NUI.TypeRegistry
- Implements
-
System.ComponentModel.INotifyPropertyChanged
System.IDisposable
Constructors
View Source
BaseHandle()
Create an instance of BaseHandle.
Declaration
API Level: 3
View Source
BaseHandle(BaseHandle)
Create an instance of BaseHandle.
Declaration
public BaseHandle(BaseHandle handle)
Parameters
Type |
Name |
Description |
BaseHandle |
handle |
The BaseHandle instance.
|
API Level: 3
Fields
View Source
disposed
The flag to check if it is already disposed of.
Declaration
[Obsolete("Deprecated in API9, will be removed in API11, Use Disposed")]
protected bool disposed
Field Value
API Level: 3
Declaration
[Obsolete("Deprecated in API9, will be removed in API11, Use SwigCMemOwn")]
protected bool swigCMemOwn
Field Value
API Level: 3
Methods
Declaration
API Level: 3
Declaration
protected virtual void Dispose(DisposeTypes type)
Parameters
API Level: 3
View Source
DoAction(String, PropertyMap)
Performs an action on this object with the given action name and attributes.
Declaration
public bool DoAction(string actionName, PropertyMap attributes)
Parameters
Type |
Name |
Description |
System.String |
actionName |
The command for the action.
|
PropertyMap |
attributes |
The list of attributes for the action.
|
Returns
Type |
Description |
Boolean |
The action is performed by the object or not.
|
API Level: 3
Declaration
public override bool Equals(object o)
Parameters
Type |
Name |
Description |
System.Object |
o |
The object should be compared.
|
Returns
Type |
Description |
Boolean |
True if equal.
|
Overrides
System.Object.Equals(System.Object)
API Level: 5
View Source
EqualTo(BaseHandle)
To check the BaseHandle instance is equal or not.
Declaration
public bool EqualTo(BaseHandle rhs)
Parameters
Type |
Name |
Description |
BaseHandle |
rhs |
The baseHandle instance.
|
Returns
Type |
Description |
Boolean |
True If equal.
|
API Level: 3
Declaration
protected void Finalize()
API Level: 3
View Source
GetHashCode()
Gets the hash code of this baseHandle.
Declaration
public override int GetHashCode()
Returns
Type |
Description |
Int32 |
The hash code.
|
Overrides
System.Object.GetHashCode()
API Level: 5
View Source
GetTypeInfo(TypeInfo)
Returns the type info for the Handle.
Declaration
public bool GetTypeInfo(TypeInfo info)
Parameters
Type |
Name |
Description |
TypeInfo |
info |
The type information.
|
Returns
Type |
Description |
Boolean |
True If get the type info.
|
API Level: 3
View Source
GetTypeName()
Returns the type name for the Handle.
Will return an empty string if the typename does not exist. This will happen for types that
have not registered with type-registry.
Declaration
public string GetTypeName()
Returns
Type |
Description |
System.String |
The type name. Empty string if the typename does not exist.
|
API Level: 3
View Source
HasBody()
To check the BaseHandle instance has body or not.
Declaration
Returns
Type |
Description |
Boolean |
True If the baseHandle instance has body.
|
API Level: 3
View Source
IsEqual(BaseHandle)
To check the BaseHandle instance is equal or not.
Declaration
public bool IsEqual(BaseHandle rhs)
Parameters
Type |
Name |
Description |
BaseHandle |
rhs |
The baseHandle instance.
|
Returns
Type |
Description |
Boolean |
True If equal.
|
API Level: 3
View Source
NotEqualTo(BaseHandle)
To check the BaseHandle instance is equal or not.
Declaration
public bool NotEqualTo(BaseHandle rhs)
Parameters
Type |
Name |
Description |
BaseHandle |
rhs |
The baseHandle instance.
|
Returns
Type |
Description |
Boolean |
True If not equal.
|
API Level: 3
Declaration
API Level: 3
Events
Declaration
[Obsolete("Deprecated in API9, will be removed in API11, Use BindableObject.PropertyChanged instead.")]
public event PropertyChangedEventHandler PropertySet
Event Type
Type |
Description |
System.ComponentModel.PropertyChangedEventHandler |
|
API Level: 5
Operators
View Source
BitwiseAnd(BaseHandle, BaseHandle)
Logical AND operator.
It's possible when doing a operator this function (opBitwiseAnd) is never called due to short circuiting.
Declaration
public static BaseHandle operator &(BaseHandle x, BaseHandle y)
Parameters
Returns
API Level: 3
View Source
BitwiseOr(BaseHandle, BaseHandle)
Logical OR operator for ||.
It's possible when doing a || this function (opBitwiseOr) is never called due to short circuiting.
Declaration
public static BaseHandle operator |(BaseHandle x, BaseHandle y)
Parameters
Returns
API Level: 3
Declaration
public static bool operator ==(BaseHandle x, BaseHandle y)
Parameters
Returns
API Level: 3
View Source
Explicit(BaseHandle to Boolean)
Explicit conversion from Handle to bool.
Declaration
public static explicit operator bool (BaseHandle handle)
Parameters
Returns
API Level: 3
View Source
False(BaseHandle)
Returns the bool false to indicate that an operand is false and returns true otherwise.
Declaration
public static bool operator false (BaseHandle handle)
Parameters
Returns
API Level: 3
View Source
Inequality(BaseHandle, BaseHandle)
Inequality operator. Returns Null if either operand is Null
Declaration
public static bool operator !=(BaseHandle x, BaseHandle y)
Parameters
Returns
API Level: 3
Declaration
public static bool operator !(BaseHandle x)
Parameters
Returns
API Level: 3
View Source
True(BaseHandle)
Returns the bool value true to indicate that an operand is true and returns false otherwise.
Declaration
public static bool operator true (BaseHandle handle)
Parameters
Returns
API Level: 3
Implements
System.ComponentModel.INotifyPropertyChanged
System.IDisposable