[global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_Actor_Property_CLIPPING_MODE_get")]
public static extern int Actor_Property_CLIPPING_MODE_get();
- [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Actor_Property_CAPTURE_ALL_TOUCH_AFTER_START_get")]
- public static extern int ActorPropertyCaptureAllTouchAfterStartGet();
-
[global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_new_Actor_Property")]
public static extern global::System.IntPtr new_Actor_Property();
}
}
- /// <summary>
- /// Whether the actor grab all touches even if touch leaves its boundary.
- /// </summary>
- /// <returns>true, if it grab all touch after start</returns>
- [EditorBrowsable(EditorBrowsableState.Never)]
- public bool GrabTouchAfterLeave
- {
- get
- {
- bool temp = false;
- GetProperty(View.Property.CaptureAllTouchAfterStart).Get(out temp);
- return temp;
- }
- set
- {
- SetProperty(View.Property.CaptureAllTouchAfterStart, new Tizen.NUI.PropertyValue(value));
- NotifyPropertyChanged();
- }
- }
-
/// <summary>
/// Get Style, it is abstract function and must be override.
/// </summary>
internal static readonly int MARGIN = Interop.ViewProperty.View_Property_MARGIN_get();
internal static readonly int PADDING = Interop.ViewProperty.View_Property_PADDING_get();
internal static readonly int SHADOW = Interop.ViewProperty.View_Property_SHADOW_get();
- internal static readonly int CaptureAllTouchAfterStart = Interop.ActorProperty.ActorPropertyCaptureAllTouchAfterStartGet();
}
}
}