%typemap(cscode) Dali::Actor::Property %{
public static readonly int SIBLING_ORDER = NDalicManualPINVOKE.Actor_Property_SIBLING_ORDER_get();
public static readonly int OPACITY = NDalicManualPINVOKE.Actor_Property_OPACITY_get();
+ public static readonly int SCREEN_POSITION = NDalicManualPINVOKE.Actor_Property_SCREEN_POSITION_get();
%}
%typemap(cscode) Dali::Toolkit::Control::Property %{
}
}
+ public Vector2 ScreenPosition
+ {
+ get
+ {
+ Vector2 temp = new Vector2( 0.0f, 0.0f );
+ GetProperty( Actor.Property.SCREEN_POSITION ).Get( temp );
+ return temp;
+ }
+ }
+
public bool StateFocusEnable
{
set
#endif
SWIGEXPORT int SWIGSTDCALL CSharp_Actor_Property_SIBLING_ORDER_get() {
- int jresult ;
- int result;
- result = (int)Dali::DevelActor::Property::SIBLING_ORDER;
- jresult = (int)result;
- return jresult;
+ return Dali::DevelActor::Property::SIBLING_ORDER;
}
-SWIGEXPORT float SWIGSTDCALL CSharp_Actor_Property_OPACITY_get() {
- int jresult ;
- int result;
+SWIGEXPORT int SWIGSTDCALL CSharp_Actor_Property_OPACITY_get() {
- result = (float)Dali::DevelActor::Property::OPACITY;
- jresult = (int)result;
- return jresult;
+ return Dali::DevelActor::Property::OPACITY;
+}
+
+SWIGEXPORT int SWIGSTDCALL CSharp_Actor_Property_SCREEN_POSITION_get() {
+
+ return Dali::DevelActor::Property::SCREEN_POSITION;
}
SWIGEXPORT int SWIGSTDCALL CSharp_View_Property_TOOLTIP_get() {
[global::System.Runtime.InteropServices.DllImport("NDalic", EntryPoint="CSharp_Actor_Property_OPACITY_get")]
public static extern int Actor_Property_OPACITY_get();
+ [global::System.Runtime.InteropServices.DllImport("NDalic", EntryPoint="CSharp_Actor_Property_SCREEN_POSITION_get")]
+ public static extern int Actor_Property_SCREEN_POSITION_get();
+
[global::System.Runtime.InteropServices.DllImport("NDalic", EntryPoint="CSharp_View_Property_TOOLTIP_get")]
public static extern int View_Property_TOOLTIP_get();